Home
last modified time | relevance | path

Searched refs:method (Results 1 – 25 of 1221) sorted by relevance

12345678910>>...49

/freebsd/crypto/openssl/crypto/x509/
H A Dx509_meth.c24 if (method != NULL) { in X509_LOOKUP_meth_new()
32 return method; in X509_LOOKUP_meth_new()
35 OPENSSL_free(method); in X509_LOOKUP_meth_new()
41 if (method != NULL) in X509_LOOKUP_meth_free()
43 OPENSSL_free(method); in X509_LOOKUP_meth_free()
63 method->free = free_fn; in X509_LOOKUP_meth_set_free()
70 return method->free; in X509_LOOKUP_meth_get_free()
76 method->init = init; in X509_LOOKUP_meth_set_init()
83 return method->init; in X509_LOOKUP_meth_get_init()
104 method->ctrl = ctrl; in X509_LOOKUP_meth_set_ctrl()
[all …]
H A Dv3_prn.c78 const X509V3_EXT_METHOD *method; in X509V3_EXT_print() local
86 if ((method = X509V3_EXT_get(ext)) == NULL) in X509V3_EXT_print()
88 if (method->it) in X509V3_EXT_print()
96 if (method->i2s) { in X509V3_EXT_print()
97 if ((value = method->i2s(method, ext_str)) == NULL) { in X509V3_EXT_print()
116 } else if (method->i2v) { in X509V3_EXT_print()
117 if ((nval = method->i2v(method, ext_str, NULL)) == NULL) { in X509V3_EXT_print()
123 } else if (method->i2r) { in X509V3_EXT_print()
124 if (!method->i2r(method, ext_str, out, indent)) in X509V3_EXT_print()
132 if (method->it) in X509V3_EXT_print()
[all …]
/freebsd/contrib/wpa/src/eap_server/
H A Deap_server_methods.c26 enum eap_type method) in eap_server_get_eap_method() argument
30 if (m->vendor == vendor && m->method == method) in eap_server_get_eap_method()
52 return m->method; in eap_server_get_type()
73 enum eap_type method, in eap_server_method_alloc() argument
82 eap->method = method; in eap_server_method_alloc()
94 os_free(method); in eap_server_method_free()
112 if (method == NULL || method->name == NULL || in eap_server_method_register()
114 eap_server_method_free(method); in eap_server_method_register()
120 m->method == method->method) || in eap_server_method_register()
129 last->next = method; in eap_server_method_register()
[all …]
/freebsd/tools/regression/geom/ConfCmp/
H A Da1.conf3 <method>
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>
104 <method><ref>0x80712c0</ref></method>
[all …]
H A Da1a.conf3 <method>
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>
104 <method><ref>0x90712c0</ref></method>
[all …]
H A Da1b.conf3 <method>
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>
104 <method><ref>0x80712c0</ref></method>
[all …]
H A Da1c.conf3 <method>
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>
104 <method><ref>0x80712c0</ref></method>
[all …]
H A Da1d.conf3 <method>
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>
104 <method><ref>0x80712c0</ref></method>
[all …]
/freebsd/sys/vm/
H A Dvm_pager.h205 if (method != NULL) in vm_pager_page_unswapped()
206 method(m); in vm_pager_page_unswapped()
216 if (method != NULL) in vm_pager_update_writecount()
227 if (method != NULL) in vm_pager_release_writecount()
240 if (method != NULL) in vm_pager_getvp()
251 if (method != NULL) in vm_pager_freespace()
261 if (method != NULL) in vm_pager_page_inserted()
262 method(object, m); in vm_pager_page_inserted()
271 if (method != NULL) in vm_pager_page_removed()
272 method(object, m); in vm_pager_page_removed()
[all …]
/freebsd/contrib/wpa/src/eap_peer/
H A Deap_methods.c31 enum eap_type method) in eap_peer_get_eap_method() argument
35 if (m->vendor == vendor && m->method == method) in eap_peer_get_eap_method()
57 return m->method; in eap_peer_get_type()
242 if (m == method) in eap_peer_method_unload()
283 enum eap_type method, in eap_peer_method_alloc() argument
292 eap->method = method; in eap_peer_method_alloc()
304 os_free(method); in eap_peer_method_free()
322 if (method == NULL || method->name == NULL || in eap_peer_method_register()
330 m->method == method->method) || in eap_peer_method_register()
339 last->next = method; in eap_peer_method_register()
[all …]
/freebsd/sys/contrib/device-tree/src/arm64/cavium/
H A Dthunder-88xx.dtsi58 method = "smc";
69 enable-method = "psci";
75 enable-method = "psci";
81 enable-method = "psci";
87 enable-method = "psci";
93 enable-method = "psci";
99 enable-method = "psci";
105 enable-method = "psci";
111 enable-method = "psci";
117 enable-method = "psci";
[all …]
/freebsd/crypto/openssl/crypto/ui/
H A Dui_lib.c39 if (method == NULL) in UI_new_method()
41 if (method == NULL) in UI_new_method()
42 method = UI_null(); in UI_new_method()
43 ret->meth = method; in UI_new_method()
709 if (method != NULL) in UI_method_get_opener()
716 if (method != NULL) in UI_method_get_writer()
723 if (method != NULL) in UI_method_get_flusher()
730 if (method != NULL) in UI_method_get_reader()
737 if (method != NULL) in UI_method_get_closer()
745 if (method != NULL) in UI_method_get_prompt_constructor()
[all …]
/freebsd/crypto/openssl/crypto/property/
H A Dproperty.c35 void *method; member
43 METHOD method; member
51 METHOD method; member
169 return (*method->up_ref)(method->method); in ossl_method_up_ref()
174 (*method->free)(method->method); in ossl_method_free()
319 impl->method.method = method; in ossl_method_store_add()
405 if (impl->method.method == method) { in ossl_method_store_remove()
469 fn(alg->nid, impl->method.method, fnarg); in alg_do_one()
573 *method = best_impl->method.method; in ossl_method_store_fetch()
702 *method = r->method.method; in ossl_method_store_cache_get()
[all …]
/freebsd/crypto/openssh/
H A Dauth2.c359 free(method); in input_userauth_request()
369 const char *method = packet_method; in userauth_finish() local
383 method = m->name; in userauth_finish()
544 Authmethod *method; in authmethod_lookup() local
549 if (method->enabled == NULL || *(method->enabled) == 0) { in authmethod_lookup()
558 return method; in authmethod_lookup()
589 method, _methods); in auth2_methods_valid()
598 method); in auth2_methods_valid()
658 size_t l = strlen(method); in list_starts_with()
662 if (strncmp(methods, method, l) != 0) in list_starts_with()
[all …]
H A Daudit.c47 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/crypto/openssl/crypto/store/
H A Dstore_meth.c157 void *method = NULL; in get_loader_from_store() local
172 return method; in get_loader_from_store()
276 void *method = NULL; in construct_loader() local
286 if (method == NULL) in construct_loader()
289 return method; in construct_loader()
306 void *method = NULL; in inner_loader_fetch() local
391 return method; in inner_loader_fetch()
399 void *method; in OSSL_STORE_LOADER_fetch() local
405 return method; in OSSL_STORE_LOADER_fetch()
413 void *method; in ossl_store_loader_fetch_by_number() local
[all …]
/freebsd/crypto/openssl/crypto/evp/
H A Devp_fetch.c144 void *method = NULL; in get_evp_method_from_store() local
175 return method; in get_evp_method_from_store()
234 void *method; in construct_evp_method() local
249 return method; in construct_evp_method()
393 return method; in inner_evp_generic_fetch()
405 void *method; in evp_generic_fetch() local
413 return method; in evp_generic_fetch()
432 void *method; in evp_generic_fetch_by_number() local
440 return method; in evp_generic_fetch_by_number()
458 void *method; in evp_generic_fetch_from_prov() local
[all …]
/freebsd/crypto/openssl/crypto/ocsp/
H A Dv3_ocsp.c23 static int i2r_ocsp_crlid(const X509V3_EXT_METHOD *method, void *nonce,
25 static int i2r_ocsp_acutoff(const X509V3_EXT_METHOD *method, void *nonce,
27 static int i2r_object(const X509V3_EXT_METHOD *method, void *obj, BIO *out,
34 static int i2r_ocsp_nonce(const X509V3_EXT_METHOD *method, void *nonce,
37 static int i2r_ocsp_nocheck(const X509V3_EXT_METHOD *method,
39 static void *s2i_ocsp_nocheck(const X509V3_EXT_METHOD *method,
41 static int i2r_ocsp_serviceloc(const X509V3_EXT_METHOD *method, void *in,
143 static int i2r_ocsp_acutoff(const X509V3_EXT_METHOD *method, void *cutoff, in i2r_ocsp_acutoff() argument
215 static int i2r_ocsp_nonce(const X509V3_EXT_METHOD *method, void *nonce, in i2r_ocsp_nonce() argument
233 static void *s2i_ocsp_nocheck(const X509V3_EXT_METHOD *method, in s2i_ocsp_nocheck() argument
[all …]
/freebsd/crypto/openssl/doc/internal/man3/
H A Dossl_method_construct.pod6 - generic method constructor
15 /* Get an already existing method from a store */
17 /* Store a method in a store */
18 int (*put)(void *store, void *method, const OSSL_PROVIDER *prov,
20 /* Construct a new method */
23 /* Destruct a method */
24 void (*destruct)(void *method, void *data);
54 ossl_method_construct() creates a method by asking all available
60 useful in the case a method must be found in that particular
86 Look up an already existing method from a store by name.
[all …]
/freebsd/crypto/openssl/doc/man3/
H A DUI_create_method.pod14 interface method creation and destruction
25 int UI_method_set_writer(UI_METHOD *method,
28 int UI_method_set_reader(UI_METHOD *method,
31 int UI_method_set_data_duplicator(UI_METHOD *method,
34 int UI_method_set_prompt_constructor(UI_METHOD *method,
41 int (*UI_method_get_opener(const UI_METHOD *method)) (UI *);
104 This depends on the needs of the method.
109 This is how the UI_OpenSSL() method does it.
173 return the different method functions.
187 return 0 on success, -1 if the given B<method> is NULL.
[all …]
H A DX509_LOOKUP_meth_new.pod30 void X509_LOOKUP_meth_free(X509_LOOKUP_METHOD *method);
32 int X509_LOOKUP_meth_set_new_item(X509_LOOKUP_METHOD *method,
37 int X509_LOOKUP_meth_set_free(X509_LOOKUP_METHOD *method,
42 int X509_LOOKUP_meth_set_init(X509_LOOKUP_METHOD *method,
47 int X509_LOOKUP_meth_set_shutdown(X509_LOOKUP_METHOD *method,
54 int X509_LOOKUP_meth_set_ctrl(X509_LOOKUP_METHOD *method,
65 const X509_LOOKUP_METHOD *method);
75 const X509_LOOKUP_METHOD *method);
85 const X509_LOOKUP_METHOD *method);
95 const X509_LOOKUP_METHOD *method);
[all …]
/freebsd/lib/libc/tests/resolv/
H A Dresolv_test.c53 enum method { enum
65 static void resolvone(long, int, enum method);
67 static pthread_t run(int, enum method, long);
174 resolvone(long threadnum, int n, enum method method) in resolvone() argument
182 switch (method) { in resolvone()
210 enum method method; member
233 run(int nhosts, enum method method, long i) in run() argument
244 args->method = method; in run()
252 run_tests(const char *hostlist_file, enum method method) in run_tests() argument
278 threads[i] = run(nhosts, method, i); in run_tests()
[all …]
/freebsd/crypto/openssl/crypto/bio/
H A Dbio_cb.c41 BIO_snprintf(p, left, "Free - %s\n", bio->method->name); in BIO_debug_callback_ex()
44 if (bio->method->type & BIO_TYPE_DESCRIPTOR) in BIO_debug_callback_ex()
47 bio->method->name, bio->num); in BIO_debug_callback_ex()
50 bio->num, len, bio->method->name); in BIO_debug_callback_ex()
53 if (bio->method->type & BIO_TYPE_DESCRIPTOR) in BIO_debug_callback_ex()
56 bio->method->name, bio->num); in BIO_debug_callback_ex()
59 bio->num, len, bio->method->name); in BIO_debug_callback_ex()
62 BIO_snprintf(p, left, "puts() - %s\n", bio->method->name); in BIO_debug_callback_ex()
66 bio->method->name); in BIO_debug_callback_ex()
70 bio->method->name); in BIO_debug_callback_ex()
/freebsd/crypto/openssl/crypto/encode_decode/
H A Ddecoder_meth.c154 void *method = NULL; in get_decoder_from_store() local
182 return method; in get_decoder_from_store()
328 void *method = NULL; in construct_decoder() local
338 if (method == NULL) in construct_decoder()
341 return method; in construct_decoder()
368 void *method = NULL; in inner_ossl_decoder_fetch() local
447 return method; in inner_ossl_decoder_fetch()
454 void *method; in OSSL_DECODER_fetch() local
460 return method; in OSSL_DECODER_fetch()
467 void *method; in ossl_decoder_fetch_by_number() local
[all …]
H A Dencoder_meth.c154 void *method = NULL; in get_encoder_from_store() local
182 return method; in get_encoder_from_store()
338 void *method = NULL; in construct_encoder() local
348 if (method == NULL) in construct_encoder()
351 return method; in construct_encoder()
378 void *method = NULL; in inner_ossl_encoder_fetch() local
456 return method; in inner_ossl_encoder_fetch()
463 void *method; in OSSL_ENCODER_fetch() local
469 return method; in OSSL_ENCODER_fetch()
476 void *method; in ossl_encoder_fetch_by_number() local
[all …]

12345678910>>...49