| /freebsd-11-stable/contrib/wpa/src/eap_server/ |
| HD | eap_server_methods.c | 25 const struct eap_method * eap_server_get_eap_method(int vendor, EapType method) in eap_server_get_eap_method() argument 29 if (m->vendor == vendor && m->method == method) in eap_server_get_eap_method() 51 return m->method; in eap_server_get_type() 72 EapType method, const char *name) in eap_server_method_alloc() argument 80 eap->method = method; in eap_server_method_alloc() 90 static void eap_server_method_free(struct eap_method *method) in eap_server_method_free() argument 92 os_free(method); in eap_server_method_free() 106 int eap_server_method_register(struct eap_method *method) in eap_server_method_register() argument 110 if (method == NULL || method->name == NULL || in eap_server_method_register() 111 method->version != EAP_SERVER_METHOD_INTERFACE_VERSION) { in eap_server_method_register() [all …]
|
| /freebsd-11-stable/tools/regression/geom/ConfCmp/ |
| HD | a1c.conf | 3 <method> 5 <name>DEV-method</name> 8 <method><ref>0x80712c0</ref></method> 20 <method><ref>0x80712c0</ref></method> 32 <method><ref>0x80712c0</ref></method> 44 <method><ref>0x80712c0</ref></method> 56 <method><ref>0x80712c0</ref></method> 68 <method><ref>0x80712c0</ref></method> 80 <method><ref>0x80712c0</ref></method> 92 <method><ref>0x80712c0</ref></method> [all …]
|
| HD | a1d.conf | 3 <method> 5 <name>DEV-method</name> 8 <method><ref>0x80712c0</ref></method> 20 <method><ref>0x80712c0</ref></method> 32 <method><ref>0x80712c0</ref></method> 44 <method><ref>0x80712c0</ref></method> 56 <method><ref>0x80712c0</ref></method> 68 <method><ref>0x80712c0</ref></method> 80 <method><ref>0x80712c0</ref></method> 92 <method><ref>0x80712c0</ref></method> [all …]
|
| HD | a1a.conf | 3 <method> 5 <name>DEV-method</name> 8 <method><ref>0x90712c0</ref></method> 20 <method><ref>0x90712c0</ref></method> 32 <method><ref>0x90712c0</ref></method> 44 <method><ref>0x90712c0</ref></method> 56 <method><ref>0x90712c0</ref></method> 68 <method><ref>0x90712c0</ref></method> 80 <method><ref>0x90712c0</ref></method> 92 <method><ref>0x90712c0</ref></method> [all …]
|
| HD | a1b.conf | 3 <method> 5 <name>DEV-method</name> 8 <method><ref>0x80712c0</ref></method> 20 <method><ref>0x80712c0</ref></method> 32 <method><ref>0x80712c0</ref></method> 44 <method><ref>0x80712c0</ref></method> 56 <method><ref>0x80712c0</ref></method> 68 <method><ref>0x80712c0</ref></method> 80 <method><ref>0x80712c0</ref></method> 92 <method><ref>0x80712c0</ref></method> [all …]
|
| HD | a1.conf | 3 <method> 5 <name>DEV-method</name> 8 <method><ref>0x80712c0</ref></method> 20 <method><ref>0x80712c0</ref></method> 32 <method><ref>0x80712c0</ref></method> 44 <method><ref>0x80712c0</ref></method> 56 <method><ref>0x80712c0</ref></method> 68 <method><ref>0x80712c0</ref></method> 80 <method><ref>0x80712c0</ref></method> 92 <method><ref>0x80712c0</ref></method> [all …]
|
| /freebsd-11-stable/contrib/wpa/src/eap_peer/ |
| HD | eap_methods.c | 21 static void eap_peer_method_free(struct eap_method *method); 30 const struct eap_method * eap_peer_get_eap_method(int vendor, EapType method) in eap_peer_get_eap_method() argument 34 if (m->vendor == vendor && m->method == method) in eap_peer_get_eap_method() 56 return m->method; in eap_peer_get_type() 79 if (m->vendor == vendor && m->method == type) in eap_get_name() 233 int eap_peer_method_unload(struct eap_method *method) in eap_peer_method_unload() argument 241 if (m == method) in eap_peer_method_unload() 282 EapType method, const char *name) in eap_peer_method_alloc() argument 290 eap->method = method; in eap_peer_method_alloc() 300 static void eap_peer_method_free(struct eap_method *method) in eap_peer_method_free() argument [all …]
|
| /freebsd-11-stable/crypto/openssl/crypto/bio/ |
| HD | bio_lib.c | 66 BIO *BIO_new(BIO_METHOD *method) in BIO_new() argument 75 if (!BIO_set(ret, method)) { in BIO_new() 82 int BIO_set(BIO *bio, BIO_METHOD *method) in BIO_set() argument 84 bio->method = method; in BIO_set() 99 if (method->create != NULL) in BIO_set() 100 if (!method->create(bio)) { in BIO_set() 132 if ((a->method != NULL) && (a->method->destroy != NULL)) in BIO_free() 133 a->method->destroy(a); in BIO_free() 182 return b->method->name; in BIO_method_name() 187 return b->method->type; in BIO_method_type() [all …]
|
| HD | bio_cb.c | 89 BIO_snprintf(p, p_maxlen, "Free - %s\n", bio->method->name); in BIO_debug_callback() 92 if (bio->method->type & BIO_TYPE_DESCRIPTOR) in BIO_debug_callback() 95 bio->method->name, bio->num); in BIO_debug_callback() 98 bio->num, (unsigned long)argi, bio->method->name); in BIO_debug_callback() 101 if (bio->method->type & BIO_TYPE_DESCRIPTOR) in BIO_debug_callback() 104 bio->method->name, bio->num); in BIO_debug_callback() 107 bio->num, (unsigned long)argi, bio->method->name); in BIO_debug_callback() 110 BIO_snprintf(p, p_maxlen, "puts() - %s\n", bio->method->name); in BIO_debug_callback() 114 bio->method->name); in BIO_debug_callback() 118 bio->method->name); in BIO_debug_callback()
|
| /freebsd-11-stable/crypto/openssl/crypto/x509v3/ |
| HD | v3_prn.c | 124 const X509V3_EXT_METHOD *method; in X509V3_EXT_print() local 128 if (!(method = X509V3_EXT_get(ext))) in X509V3_EXT_print() 131 if (method->it) in X509V3_EXT_print() 134 ASN1_ITEM_ptr(method->it)); in X509V3_EXT_print() 136 ext_str = method->d2i(NULL, &p, ext->value->length); in X509V3_EXT_print() 141 if (method->i2s) { in X509V3_EXT_print() 142 if (!(value = method->i2s(method, ext_str))) { in X509V3_EXT_print() 161 } else if (method->i2v) { in X509V3_EXT_print() 162 if (!(nval = method->i2v(method, ext_str, NULL))) { in X509V3_EXT_print() 167 method->ext_flags & X509V3_EXT_MULTILINE); in X509V3_EXT_print() [all …]
|
| HD | v3_ocsp.c | 73 static int i2r_ocsp_crlid(const X509V3_EXT_METHOD *method, void *nonce, 75 static int i2r_ocsp_acutoff(const X509V3_EXT_METHOD *method, void *nonce, 77 static int i2r_object(const X509V3_EXT_METHOD *method, void *obj, BIO *out, 84 static int i2r_ocsp_nonce(const X509V3_EXT_METHOD *method, void *nonce, 87 static int i2r_ocsp_nocheck(const X509V3_EXT_METHOD *method, 89 static void *s2i_ocsp_nocheck(const X509V3_EXT_METHOD *method, 91 static int i2r_ocsp_serviceloc(const X509V3_EXT_METHOD *method, void *in, 160 static int i2r_ocsp_crlid(const X509V3_EXT_METHOD *method, void *in, BIO *bp, in i2r_ocsp_crlid() argument 193 static int i2r_ocsp_acutoff(const X509V3_EXT_METHOD *method, void *cutoff, in i2r_ocsp_acutoff() argument 203 static int i2r_object(const X509V3_EXT_METHOD *method, void *oid, BIO *bp, in i2r_object() argument [all …]
|
| HD | v3_conf.c | 77 static X509_EXTENSION *do_ext_i2d(const X509V3_EXT_METHOD *method, 120 const X509V3_EXT_METHOD *method; in do_ext_nconf() local 128 if (!(method = X509V3_EXT_get_nid(ext_nid))) { in do_ext_nconf() 133 if (method->v2i) { in do_ext_nconf() 147 ext_struc = method->v2i(method, ctx, nval); in do_ext_nconf() 152 } else if (method->s2i) { in do_ext_nconf() 153 if (!(ext_struc = method->s2i(method, ctx, value))) in do_ext_nconf() 155 } else if (method->r2i) { in do_ext_nconf() 160 if (!(ext_struc = method->r2i(method, ctx, value))) in do_ext_nconf() 169 ext = do_ext_i2d(method, ext_nid, crit, ext_struc); in do_ext_nconf() [all …]
|
| HD | v3_info.c | 68 *method, AUTHORITY_INFO_ACCESS 72 *method, 98 ASN1_SIMPLE(ACCESS_DESCRIPTION, method, ASN1_OBJECT), 111 X509V3_EXT_METHOD *method, AUTHORITY_INFO_ACCESS *ainfo, 124 tmp = i2v_GENERAL_NAME(method, desc->location, tret); 129 i2t_ASN1_OBJECT(objtmp, sizeof(objtmp), desc->method); 153 *method, in v2i_AUTHORITY_INFO_ACCESS() argument 184 if (!v2i_GENERAL_NAME_ex(acc->location, method, ctx, &ctmp, 0)) in v2i_AUTHORITY_INFO_ACCESS() 193 acc->method = OBJ_txt2obj(objtmp, 0); in v2i_AUTHORITY_INFO_ACCESS() 194 if (!acc->method) { in v2i_AUTHORITY_INFO_ACCESS() [all …]
|
| /freebsd-11-stable/crypto/openssh/ |
| HD | auth2.c | 220 char *user, *service, *method, *style = NULL; in input_userauth_request() local 232 method = packet_get_cstring(NULL); in input_userauth_request() 233 debug("userauth-request for user %s service %s method %s", user, service, method); in input_userauth_request() 308 m = authmethod_lookup(authctxt, method); in input_userauth_request() 310 debug2("input_userauth_request: try method %s", method); in input_userauth_request() 313 userauth_finish(authctxt, authenticated, method, NULL); in input_userauth_request() 317 free(method); in input_userauth_request() 322 userauth_finish(Authctxt *authctxt, int authenticated, const char *method, in userauth_finish() argument 337 !auth_root_allowed(method)) { in userauth_finish() 345 if (!auth2_update_methods_lists(authctxt, method, submethod)) { in userauth_finish() [all …]
|
| HD | audit.c | 47 audit_classify_auth(const char *method) in audit_classify_auth() argument 49 if (strcmp(method, "none") == 0) in audit_classify_auth() 51 else if (strcmp(method, "password") == 0) in audit_classify_auth() 53 else if (strcmp(method, "publickey") == 0 || in audit_classify_auth() 54 strcmp(method, "rsa") == 0) in audit_classify_auth() 56 else if (strncmp(method, "keyboard-interactive", 20) == 0 || in audit_classify_auth() 57 strcmp(method, "challenge-response") == 0) in audit_classify_auth() 59 else if (strcmp(method, "hostbased") == 0 || in audit_classify_auth() 60 strcmp(method, "rhosts-rsa") == 0) in audit_classify_auth() 62 else if (strcmp(method, "gssapi-with-mic") == 0) in audit_classify_auth()
|
| /freebsd-11-stable/crypto/openssl/crypto/ui/ |
| HD | ui_lib.c | 77 UI *UI_new_method(const UI_METHOD *method) in UI_new_method() argument 86 if (method == NULL) in UI_new_method() 89 ret->meth = method; in UI_new_method() 620 int UI_method_set_opener(UI_METHOD *method, int (*opener) (UI *ui)) in UI_method_set_opener() argument 622 if (method != NULL) { in UI_method_set_opener() 623 method->ui_open_session = opener; in UI_method_set_opener() 629 int UI_method_set_writer(UI_METHOD *method, in UI_method_set_writer() argument 632 if (method != NULL) { in UI_method_set_writer() 633 method->ui_write_string = writer; in UI_method_set_writer() 639 int UI_method_set_flusher(UI_METHOD *method, int (*flusher) (UI *ui)) in UI_method_set_flusher() argument [all …]
|
| HD | ui.h | 86 UI *UI_new_method(const UI_METHOD *method); 323 int UI_method_set_opener(UI_METHOD *method, int (*opener) (UI *ui)); 324 int UI_method_set_writer(UI_METHOD *method, 326 int UI_method_set_flusher(UI_METHOD *method, int (*flusher) (UI *ui)); 327 int UI_method_set_reader(UI_METHOD *method, 329 int UI_method_set_closer(UI_METHOD *method, int (*closer) (UI *ui)); 330 int UI_method_set_prompt_constructor(UI_METHOD *method, 336 int (*UI_method_get_opener(UI_METHOD *method)) (UI *); 337 int (*UI_method_get_writer(UI_METHOD *method)) (UI *, UI_STRING *); 338 int (*UI_method_get_flusher(UI_METHOD *method)) (UI *); [all …]
|
| /freebsd-11-stable/sys/dev/acpi_support/ |
| HD | acpi_hp.c | 153 int method; member 159 .method = ACPI_HP_METHOD_WLAN_ENABLED, 164 .method = ACPI_HP_METHOD_WLAN_RADIO, 170 .method = ACPI_HP_METHOD_WLAN_ON_AIR, 176 .method = ACPI_HP_METHOD_WLAN_ENABLE_IF_RADIO_ON, 181 .method = ACPI_HP_METHOD_WLAN_DISABLE_IF_RADIO_OFF, 186 .method = ACPI_HP_METHOD_BLUETOOTH_ENABLED, 191 .method = ACPI_HP_METHOD_BLUETOOTH_RADIO, 197 .method = ACPI_HP_METHOD_BLUETOOTH_ON_AIR, 204 .method = ACPI_HP_METHOD_BLUETOOTH_ENABLE_IF_RADIO_ON, [all …]
|
| /freebsd-11-stable/contrib/apr/poll/unix/ |
| HD | pollcb.c | 44 static const apr_pollcb_provider_t *pollcb_provider(apr_pollset_method_e method) in pollcb_provider() argument 47 switch (method) { in pollcb_provider() 94 apr_pollset_method_e method) in apr_pollcb_create_ex() argument 108 if (method == APR_POLLSET_DEFAULT) { in apr_pollcb_create_ex() 109 method = APR_POLLSET_POLL; in apr_pollcb_create_ex() 113 if (method == APR_POLLSET_DEFAULT) in apr_pollcb_create_ex() 114 method = pollset_default_method; in apr_pollcb_create_ex() 116 provider = pollcb_provider(method); in apr_pollcb_create_ex() 120 if (method == pollset_default_method) in apr_pollcb_create_ex() 122 method = pollset_default_method; in apr_pollcb_create_ex() [all …]
|
| HD | pollset.c | 63 static const apr_pollset_provider_t *pollset_provider(apr_pollset_method_e method) in pollset_provider() argument 66 switch (method) { in pollset_provider() 105 apr_pollset_method_e method) in apr_pollset_create_ex() argument 119 if (method == APR_POLLSET_DEFAULT) { in apr_pollset_create_ex() 120 method = APR_POLLSET_POLL; in apr_pollset_create_ex() 124 if (method == APR_POLLSET_DEFAULT) in apr_pollset_create_ex() 125 method = pollset_default_method; in apr_pollset_create_ex() 127 provider = pollset_provider(method); in apr_pollset_create_ex() 131 if (method == pollset_default_method) in apr_pollset_create_ex() 133 method = pollset_default_method; in apr_pollset_create_ex() [all …]
|
| /freebsd-11-stable/crypto/openssl/crypto/x509/ |
| HD | x509_lu.c | 65 X509_LOOKUP *X509_LOOKUP_new(X509_LOOKUP_METHOD *method) in X509_LOOKUP_new() argument 75 ret->method = method; in X509_LOOKUP_new() 78 if ((method->new_item != NULL) && !method->new_item(ret)) { in X509_LOOKUP_new() 89 if ((ctx->method != NULL) && (ctx->method->free != NULL)) in X509_LOOKUP_free() 90 (*ctx->method->free) (ctx); in X509_LOOKUP_free() 96 if (ctx->method == NULL) in X509_LOOKUP_init() 98 if (ctx->method->init != NULL) in X509_LOOKUP_init() 99 return ctx->method->init(ctx); in X509_LOOKUP_init() 106 if (ctx->method == NULL) in X509_LOOKUP_shutdown() 108 if (ctx->method->shutdown != NULL) in X509_LOOKUP_shutdown() [all …]
|
| /freebsd-11-stable/stand/ficl/softwords/ |
| HD | oo.fr | 28 \ access method 38 \ The NEW method creates and initializes an instance of a class. 53 \ has an extra field for the vtable method count. Hasvtable declares 56 \ Revised Nov 2001 - metaclass debug method now finds only metaclass methods 60 \ END-CLASS allocates and clears the vtable - then it walks class's method 61 \ list and inserts all new methods into table. For each method, if the table 62 \ slot is already nonzero, do nothing (overridden method). Otherwise fill 71 \ : is redefined to check for override, fill in vtable index, increment method 85 \ Compile the method name, and code to find and 90 \ compiles a method name so that it pushes [all …]
|
| /freebsd-11-stable/contrib/ofed/libibmad/ |
| HD | bm.c | 45 static inline int response_expected(int method) in response_expected() argument 47 return method == IB_MAD_METHOD_GET || in response_expected() 48 method == IB_MAD_METHOD_SET || method == IB_MAD_METHOD_TRAP; in response_expected() 68 resp_expected = response_expected(call->method); in bm_call_via() 72 rpc.method = call->method; in bm_call_via() 87 rpc.method, rpc.attr.id, rpc.attr.mod, rpc.datasz, rpc.dataoffs, in bm_call_via()
|
| HD | vendor.c | 51 static inline int response_expected(int method) in response_expected() argument 53 return method == IB_MAD_METHOD_GET || in response_expected() 54 method == IB_MAD_METHOD_SET || method == IB_MAD_METHOD_TRAP; in response_expected() 80 resp_expected = response_expected(call->method); in ib_vendor_call_via() 84 rpc.method = call->method; in ib_vendor_call_via() 98 rpc.mgtclass, rpc.method, rpc.attr.id, rpc.attr.mod, rpc.datasz, in ib_vendor_call_via()
|
| /freebsd-11-stable/crypto/openssl/doc/ssl/ |
| HD | SSL_CTX_set_ssl_version.pod | 6 - choose a new TLS/SSL method 12 int SSL_CTX_set_ssl_version(SSL_CTX *ctx, const SSL_METHOD *method); 13 int SSL_set_ssl_method(SSL *s, const SSL_METHOD *method); 18 SSL_CTX_set_ssl_version() sets a new default TLS/SSL B<method> for SSL objects 23 SSL_set_ssl_method() sets a new TLS/SSL B<method> for a particular B<ssl> 26 SSL_get_ssl_method() returns a function pointer to the TLS/SSL method 31 The available B<method> choices are described in 35 an SSL object, the method of the SSL object is reset to the method currently
|