Searched refs:method (Results 1 - 25 of 388) sorted by relevance

1234567891011>>

/freebsd-11-stable/contrib/wpa/src/eap_server/
H A Deap_server_methods.c2 * EAP server method registration
20 * eap_server_get_eap_method - Get EAP method based on type number
22 * @method: EAP type number
23 * Returns: Pointer to EAP method or %NULL if not found
25 const struct eap_method * eap_server_get_eap_method(int vendor, EapType method) argument
29 if (m->vendor == vendor && m->method == method)
37 * eap_server_get_type - Get EAP type for the given EAP method name
38 * @name: EAP method name, e.g., TLS
40 * Returns: EAP method typ
71 eap_server_method_alloc(int version, int vendor, EapType method, const char *name) argument
90 eap_server_method_free(struct eap_method *method) argument
106 eap_server_method_register(struct eap_method *method) argument
[all...]
H A Deap_methods.h2 * EAP server method registration
15 EapType method);
17 EapType method, const char *name);
18 int eap_server_method_register(struct eap_method *method);
24 /* EAP server method registration calls for statically linked in methods */
/freebsd-11-stable/crypto/openssh/
H A Daudit.c47 audit_classify_auth(const char *method) argument
49 if (strcmp(method, "none") == 0)
51 else if (strcmp(method, "password") == 0)
53 else if (strcmp(method, "publickey") == 0 ||
54 strcmp(method, "rsa") == 0)
56 else if (strncmp(method, "keyboard-interactive", 20) == 0 ||
57 strcmp(method, "challenge-response") == 0)
59 else if (strcmp(method, "hostbased") == 0 ||
60 strcmp(method, "rhosts-rsa") == 0)
62 else if (strcmp(method, "gssap
[all...]
H A Dauth2.c99 #define MATCH_NONE 0 /* method or submethod mismatch */
100 #define MATCH_METHOD 1 /* method matches (no submethod specified) */
101 #define MATCH_BOTH 2 /* method and submethod match */
102 #define MATCH_PARTIAL 3 /* method matches, submethod can't be checked */
220 char *user, *service, *method, *style = NULL; local
232 method = packet_get_cstring(NULL);
233 debug("userauth-request for user %s service %s method %s", user, service, method);
308 m = authmethod_lookup(authctxt, method);
310 debug2("input_userauth_request: try method
322 userauth_finish(Authctxt *authctxt, int authenticated, const char *method, const char *submethod) argument
420 auth2_method_allowed(Authctxt *authctxt, const char *method, const char *submethod) argument
493 char *methods, *omethods, *method, *p; local
571 list_starts_with(const char *methods, const char *method, const char *submethod) argument
603 remove_method(char **methods, const char *method, const char *submethod) argument
629 auth2_update_methods_lists(Authctxt *authctxt, const char *method, const char *submethod) argument
[all...]
/freebsd-11-stable/crypto/openssl/crypto/x509v3/
H A Dv3_enum.c90 char *i2s_ASN1_ENUMERATED_TABLE(X509V3_EXT_METHOD *method, ASN1_ENUMERATED *e) argument
95 for (enam = method->usr_data; enam->lname; enam++) {
99 return i2s_ASN1_ENUMERATED(method, e);
H A Dv3_prn.c124 const X509V3_EXT_METHOD *method; local
128 if (!(method = X509V3_EXT_get(ext)))
131 if (method->it)
134 ASN1_ITEM_ptr(method->it));
136 ext_str = method->d2i(NULL, &p, ext->value->length);
141 if (method->i2s) {
142 if (!(value = method->i2s(method, ext_str))) {
161 } else if (method->i2v) {
162 if (!(nval = method
[all...]
H A Dv3_info.c68 *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,
184 if (!v2i_GENERAL_NAME_ex(acc->location, method, ctx, &ctmp, 0))
193 acc->method = OBJ_txt2obj(objtmp, 0);
194 if (!acc->method) {
[all...]
H A Dv3_bitst.c95 STACK_OF(CONF_VALUE) *i2v_ASN1_BIT_STRING(X509V3_EXT_METHOD *method,
100 for (bnam = method->usr_data; bnam->lname; bnam++) {
107 ASN1_BIT_STRING *v2i_ASN1_BIT_STRING(X509V3_EXT_METHOD *method, argument
121 for (bnam = method->usr_data; bnam->lname; bnam++) {
H A Dv3_ia5.c66 static char *i2s_ASN1_IA5STRING(X509V3_EXT_METHOD *method,
68 static ASN1_IA5STRING *s2i_ASN1_IA5STRING(X509V3_EXT_METHOD *method,
81 static char *i2s_ASN1_IA5STRING(X509V3_EXT_METHOD *method, argument
96 static ASN1_IA5STRING *s2i_ASN1_IA5STRING(X509V3_EXT_METHOD *method, argument
/freebsd-11-stable/contrib/wpa/src/eap_peer/
H A Deap_methods.c21 static void eap_peer_method_free(struct eap_method *method);
25 * eap_peer_get_eap_method - Get EAP method based on type number
27 * @method: EAP type number
28 * Returns: Pointer to EAP method or %NULL if not found
30 const struct eap_method * eap_peer_get_eap_method(int vendor, EapType method) argument
34 if (m->vendor == vendor && m->method == method)
42 * eap_peer_get_type - Get EAP type for the given EAP method name
43 * @name: EAP method name, e.g., TLS
45 * Returns: EAP method typ
233 eap_peer_method_unload(struct eap_method *method) argument
281 eap_peer_method_alloc(int version, int vendor, EapType method, const char *name) argument
300 eap_peer_method_free(struct eap_method *method) argument
316 eap_peer_method_register(struct eap_method *method) argument
[all...]
H A Deap_methods.h14 const struct eap_method * eap_peer_get_eap_method(int vendor, EapType method);
18 EapType method, const char *name);
19 int eap_peer_method_register(struct eap_method *method);
68 int eap_peer_method_unload(struct eap_method *method);
77 static inline int eap_peer_method_unload(struct eap_method *method) argument
84 /* EAP peer method registration calls for statically linked in methods */
/freebsd-11-stable/tools/regression/geom/ConfCmp/
H A Da1.conf3 <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>
[all...]
H A Da1a.conf3 <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>
[all...]
H A Da1b.conf3 <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>
[all...]
H A Da1c.conf3 <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>
[all...]
H A Da1d.conf3 <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>
[all...]
/freebsd-11-stable/contrib/ofed/libibmad/
H A Dvendor.c51 static inline int response_expected(int method) argument
53 return method == IB_MAD_METHOD_GET ||
54 method == IB_MAD_METHOD_SET || method == IB_MAD_METHOD_TRAP;
80 resp_expected = response_expected(call->method);
84 rpc.method = call->method;
97 ("class 0x%x method 0x%x attr 0x%x mod 0x%x datasz %d off %d res_ex %d",
98 rpc.mgtclass, rpc.method, rpc.attr.id, rpc.attr.mod, rpc.datasz,
H A Dbm.c45 static inline int response_expected(int method) argument
47 return method == IB_MAD_METHOD_GET ||
48 method == IB_MAD_METHOD_SET || method == IB_MAD_METHOD_TRAP;
68 resp_expected = response_expected(call->method);
72 rpc.method = call->method;
86 ("method 0x%x attr 0x%x mod 0x%x datasz %d off %d res_ex %d bkey 0x%08x%08x",
87 rpc.method, rpc.attr.id, rpc.attr.mod, rpc.datasz, rpc.dataoffs,
/freebsd-11-stable/crypto/openssl/crypto/bio/
H A Dbio_cb.c89 BIO_snprintf(p, p_maxlen, "Free - %s\n", bio->method->name);
92 if (bio->method->type & BIO_TYPE_DESCRIPTOR)
95 bio->method->name, bio->num);
98 bio->num, (unsigned long)argi, bio->method->name);
101 if (bio->method->type & BIO_TYPE_DESCRIPTOR)
104 bio->method->name, bio->num);
107 bio->num, (unsigned long)argi, bio->method->name);
110 BIO_snprintf(p, p_maxlen, "puts() - %s\n", bio->method->name);
114 bio->method->name);
118 bio->method
[all...]
/freebsd-11-stable/crypto/openssl/crypto/ui/
H A Dui.h86 UI *UI_new_method(const UI_METHOD *method);
167 * UI won't look at those, but will pass them on to the method routines. They
206 * Note that the UI_OpenSSL() method completely ignores the user data. Other
254 /* The method with all the built-in thingies */
257 /* ---------- For method writers ---------- */
259 A method contains a number of functions that implement the low level
296 All method functions take a UI as argument. Additionally, the writer and
309 * needed by method authors.
323 int UI_method_set_opener(UI_METHOD *method, int (*opener) (UI *ui));
324 int UI_method_set_writer(UI_METHOD *method,
[all...]
/freebsd-11-stable/contrib/apr/poll/unix/
H A Dpollset.c63 static const apr_pollset_provider_t *pollset_provider(apr_pollset_method_e method) argument
66 switch (method) {
105 apr_pollset_method_e method)
116 * In other cases it will fall back to select() method unless
119 if (method == APR_POLLSET_DEFAULT) {
120 method = APR_POLLSET_POLL;
124 if (method == APR_POLLSET_DEFAULT)
125 method = pollset_default_method;
127 provider = pollset_provider(method);
131 if (method
207 apr_pollset_method_e method = APR_POLLSET_DEFAULT; local
[all...]
H A Dpollcb.c44 static const apr_pollcb_provider_t *pollcb_provider(apr_pollset_method_e method) argument
47 switch (method) {
94 apr_pollset_method_e method)
105 * but someone might implement other pollcb method in
108 if (method == APR_POLLSET_DEFAULT) {
109 method = APR_POLLSET_POLL;
113 if (method == APR_POLLSET_DEFAULT)
114 method = pollset_default_method;
116 provider = pollcb_provider(method);
120 if (method
188 apr_pollset_method_e method = APR_POLLSET_DEFAULT; local
[all...]
/freebsd-11-stable/contrib/gdb/gdb/
H A Dobjc-lang.h48 extern char *parse_selector (char *method, char **selector);
50 extern char *parse_method (char *method, char *type,
55 char *method, struct symbol **syms,
/freebsd-11-stable/contrib/ofed/libibumad/
H A Dumad_str.c88 static const char * umad_common_method_str(uint8_t method) argument
90 switch(method) {
112 static const char * umad_sa_method_str(uint8_t method) argument
114 switch(method) {
130 return (umad_common_method_str(method));
134 const char * umad_method_str(uint8_t mgmt_class, uint8_t method) argument
137 return(umad_sa_method_str(method));
139 return (umad_common_method_str(method));
/freebsd-11-stable/sys/powerpc/include/
H A Drtas.h47 cell_t rtas_token_lookup(const char *method);

Completed in 145 milliseconds

1234567891011>>