Home
last modified time | relevance | path

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

12345678910>>...13

/dragonfly/contrib/wpa_supplicant/src/eap_server/
H A Deap_server_methods.c29 if (m->vendor == vendor && m->method == method) in eap_server_get_eap_method()
51 return m->method; in eap_server_get_type()
80 eap->method = method; in eap_server_method_alloc()
92 os_free(method); in eap_server_method_free()
110 if (method == NULL || method->name == NULL || in eap_server_method_register()
112 eap_server_method_free(method); in eap_server_method_register()
117 if ((m->vendor == method->vendor && in eap_server_method_register()
118 m->method == method->method) || in eap_server_method_register()
120 eap_server_method_free(method); in eap_server_method_register()
127 last->next = method; in eap_server_method_register()
[all …]
/dragonfly/contrib/wpa_supplicant/src/eap_peer/
H A Deap_methods.c34 if (m->vendor == vendor && m->method == method) in eap_peer_get_eap_method()
56 return m->method; in eap_peer_get_type()
241 if (m == method) in eap_peer_method_unload()
290 eap->method = method; in eap_peer_method_alloc()
302 os_free(method); in eap_peer_method_free()
320 if (method == NULL || method->name == NULL || in eap_peer_method_register()
322 eap_peer_method_free(method); in eap_peer_method_register()
328 m->method == method->method) || in eap_peer_method_register()
330 eap_peer_method_free(method); in eap_peer_method_register()
337 last->next = method; in eap_peer_method_register()
[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) in eap_peer_method_unload() argument
/dragonfly/contrib/gcc-4.7/libobjc/
H A Dmethods.c33 method_getName (struct objc_method * method) in method_getName() argument
35 if (method == NULL) in method_getName()
38 return method->method_name; in method_getName()
44 if (method == NULL) in method_getTypeEncoding()
47 return method->method_types; in method_getTypeEncoding()
53 if (method == NULL) in method_getImplementation()
56 return method->method_imp; in method_getImplementation()
64 return (struct objc_method_description *)method; in method_getDescription()
133 if (method == NULL || implementation == NULL) in method_setImplementation()
140 old_implementation = method->method_imp; in method_setImplementation()
[all …]
H A Dsendmsg.c368 return (method != (struct objc_method *)0) ? method->method_imp : (IMP)0; in method_get_imp()
530 if (method) in __objc_send_initialize()
569 method->method_imp); in __objc_install_methods_in_dtable()
680 struct objc_method *method; in class_addMethod() local
710 if (method->method_name in class_addMethod()
765 struct objc_method * method; in class_replaceMethod() local
773 if (method) in class_replaceMethod()
790 struct objc_method * method = NULL; in search_for_method_in_hierarchy() local
801 return method; in search_for_method_in_hierarchy()
827 if (method->method_name) in search_for_method_in_list()
[all …]
H A Dencoding.c804 if (method == NULL) in method_copyReturnType()
815 const char *type = method->method_types; in method_copyReturnType()
834 if (method == NULL) in method_copyArgumentType()
844 const char *type = method->method_types; in method_copyArgumentType()
891 if (method == NULL) in method_getReturnType()
901 const char *type = method->method_types; in method_getReturnType()
905 argumentTypeSize = type - method->method_types; in method_getReturnType()
924 if (method == NULL) in method_getArgumentType()
933 const char *type = method->method_types; in method_getArgumentType()
970 if (method == NULL) in method_getNumberOfArguments()
[all …]
/dragonfly/crypto/libressl/crypto/x509/
H A Dx509_prn.c111 const X509V3_EXT_METHOD *method; in X509V3_EXT_print() local
118 if (method->it) in X509V3_EXT_print()
120 method->it); in X509V3_EXT_print()
127 if (method->i2s) { in X509V3_EXT_print()
128 if (!(value = method->i2s(method, ext_str))) { in X509V3_EXT_print()
133 } else if (method->i2v) { in X509V3_EXT_print()
134 if (!(nval = method->i2v(method, ext_str, NULL))) { in X509V3_EXT_print()
140 } else if (method->i2r) { in X509V3_EXT_print()
141 if (!method->i2r(method, ext_str, out, indent)) in X509V3_EXT_print()
149 if (method->it) in X509V3_EXT_print()
[all …]
H A Dx509_lu.c78 lu->method = method; in X509_LOOKUP_new()
80 if (method->new_item != NULL && !method->new_item(lu)) { in X509_LOOKUP_new()
93 if (ctx->method != NULL && ctx->method->free != NULL) in X509_LOOKUP_free()
94 ctx->method->free(ctx); in X509_LOOKUP_free()
101 if (ctx->method == NULL) in X509_LOOKUP_init()
111 if (ctx->method == NULL) in X509_LOOKUP_shutdown()
133 if (ctx->method == NULL || ctx->method->get_by_subject == NULL) in X509_LOOKUP_by_subject()
142 if (ctx->method == NULL || ctx->method->get_by_issuer_serial == NULL) in X509_LOOKUP_by_issuer_serial()
151 if (ctx->method == NULL || ctx->method->get_by_fingerprint == NULL) in X509_LOOKUP_by_fingerprint()
160 if (ctx->method == NULL || ctx->method->get_by_alias == NULL) in X509_LOOKUP_by_alias()
[all …]
H A Dx509_conf.c143 if (method->v2i) { in do_ext_nconf()
158 ext_struc = method->v2i(method, ctx, nval); in do_ext_nconf()
161 } else if (method->s2i) { in do_ext_nconf()
162 ext_struc = method->s2i(method, ctx, value); in do_ext_nconf()
163 } else if (method->r2i) { in do_ext_nconf()
168 ext_struc = method->r2i(method, ctx, value); in do_ext_nconf()
178 if (method->it) in do_ext_nconf()
181 method->ext_free(ext_struc); in do_ext_nconf()
195 if (method->it) { in do_ext_i2d()
198 method->it); in do_ext_i2d()
[all …]
H A Dx509_ocsp.c77 static int i2r_ocsp_crlid(const X509V3_EXT_METHOD *method, void *nonce,
79 static int i2r_ocsp_acutoff(const X509V3_EXT_METHOD *method, void *nonce,
81 static int i2r_object(const X509V3_EXT_METHOD *method, void *obj, BIO *out,
88 static int i2r_ocsp_nonce(const X509V3_EXT_METHOD *method, void *nonce,
91 static int i2r_ocsp_nocheck(const X509V3_EXT_METHOD *method,
95 static int i2r_ocsp_serviceloc(const X509V3_EXT_METHOD *method, void *in,
252 i2r_ocsp_acutoff(const X509V3_EXT_METHOD *method, void *cutoff, BIO *bp, in i2r_ocsp_acutoff() argument
263 i2r_object(const X509V3_EXT_METHOD *method, void *oid, BIO *bp, int ind) in i2r_object() argument
329 i2r_ocsp_nonce(const X509V3_EXT_METHOD *method, void *nonce, BIO *out, in i2r_ocsp_nonce() argument
349 s2i_ocsp_nocheck(const X509V3_EXT_METHOD *method, X509V3_CTX *ctx, in s2i_ocsp_nocheck() argument
[all …]
H A Dx509_info.c69 X509V3_EXT_METHOD *method, AUTHORITY_INFO_ACCESS *ainfo,
72 X509V3_EXT_METHOD *method, X509V3_CTX *ctx, STACK_OF(CONF_VALUE) *nval);
112 .offset = offsetof(ACCESS_DESCRIPTION, method),
206 i2v_AUTHORITY_INFO_ACCESS(X509V3_EXT_METHOD *method, in STACK_OF()
223 if ((ret = i2v_GENERAL_NAME(method, desc->location, in STACK_OF()
228 if (!i2t_ASN1_OBJECT(objtmp, sizeof objtmp, desc->method)) in STACK_OF()
248 v2i_AUTHORITY_INFO_ACCESS(X509V3_EXT_METHOD *method, X509V3_CTX *ctx, in v2i_AUTHORITY_INFO_ACCESS() argument
280 if (!v2i_GENERAL_NAME_ex(acc->location, method, ctx, &ctmp, 0)) in v2i_AUTHORITY_INFO_ACCESS()
287 acc->method = OBJ_txt2obj(objtmp, 0); in v2i_AUTHORITY_INFO_ACCESS()
288 if (!acc->method) { in v2i_AUTHORITY_INFO_ACCESS()
[all …]
/dragonfly/crypto/openssh/
H A Dauth2.c348 free(method); in input_userauth_request()
358 const char *method = packet_method; in userauth_finish() local
372 method = m->name; in userauth_finish()
531 Authmethod *method; in authmethod_lookup() local
536 if (method->enabled == NULL || *(method->enabled) == 0) { in authmethod_lookup()
545 return method; in authmethod_lookup()
576 method, _methods); in auth2_methods_valid()
585 method); in auth2_methods_valid()
645 size_t l = strlen(method); in list_starts_with()
649 if (strncmp(methods, method, l) != 0) in list_starts_with()
[all …]
/dragonfly/crypto/libressl/crypto/ui/
H A Dui_lib.c566 if (method) { in UI_method_set_opener()
576 if (method) { in UI_method_set_writer()
586 if (method) { in UI_method_set_flusher()
596 if (method) { in UI_method_set_reader()
606 if (method) { in UI_method_set_closer()
628 if (method) in UI_method_get_opener()
636 if (method) in UI_method_get_writer()
644 if (method) in UI_method_get_flusher()
652 if (method) in UI_method_get_reader()
660 if (method) in UI_method_get_closer()
[all …]
/dragonfly/contrib/cvs-1.12/src/
H A Droot.c384 newroot->method = null_method; in new_cvsroot_t()
508 char *method = ++cvsroot_copy; in parse_cvsroot() local
519 if (! (p = strchr (method, ':'))) in parse_cvsroot()
531 method = strtok (method, ";"); in parse_cvsroot()
532 if (!method) in parse_cvsroot()
535 method = ""; in parse_cvsroot()
540 if (!strcasecmp (method, "local")) in parse_cvsroot()
551 newroot->method = ext_method; in parse_cvsroot()
553 newroot->method = fork_method; in parse_cvsroot()
606 if (newroot->method == ext_method in parse_cvsroot()
[all …]
/dragonfly/crypto/libressl/crypto/bio/
H A Dbio_lib.c154 bio->method = method; in BIO_set()
199 if (a->method != NULL && a->method->destroy != NULL) in BIO_free()
200 a->method->destroy(a); in BIO_free()
311 return b->method->name; in BIO_method_name()
317 return b->method->type; in BIO_method_type()
332 if (b->method == NULL || b->method->bread == NULL) { in BIO_read()
382 if (b->method == NULL || b->method->bwrite == NULL) { in BIO_write()
426 if (b == NULL || b->method == NULL || b->method->bputs == NULL) { in BIO_puts()
470 if (b == NULL || b->method == NULL || b->method->bgets == NULL) { in BIO_gets()
547 if (b->method == NULL || b->method->ctrl == NULL) { in BIO_ctrl()
[all …]
H A Dbio_cb.c93 snprintf(p, p_maxlen, "Free - %s\n", bio->method->name); in BIO_debug_callback()
96 if (bio->method->type & BIO_TYPE_DESCRIPTOR) in BIO_debug_callback()
100 bio->method->name, bio->num); in BIO_debug_callback()
103 bio->num, (unsigned long)argi, bio->method->name); in BIO_debug_callback()
106 if (bio->method->type & BIO_TYPE_DESCRIPTOR) in BIO_debug_callback()
110 bio->method->name, bio->num); in BIO_debug_callback()
113 bio->num, (unsigned long)argi, bio->method->name); in BIO_debug_callback()
117 "puts() - %s\n", bio->method->name); in BIO_debug_callback()
121 (unsigned long)argi, bio->method->name); in BIO_debug_callback()
125 (unsigned long)argi, bio->method->name); in BIO_debug_callback()
/dragonfly/sys/dev/acpica/acpi_hp/
H A Dacpi_hp.c153 int method; member
250 .method = ACPI_HP_METHOD_ALS,
268 .method = ACPI_HP_METHOD_DOCK,
542 acpi_hp_sysctls[i].method == in acpi_hp_attach()
544 acpi_hp_sysctls[i].method == in acpi_hp_attach()
546 acpi_hp_sysctls[i].method == in acpi_hp_attach()
548 acpi_hp_sysctls[i].method == in acpi_hp_attach()
615 int method; in acpi_hp_sysctl() local
621 method = acpi_hp_sysctls[function].method; in acpi_hp_sysctl()
643 switch (method) { in acpi_hp_sysctl_get()
[all …]
/dragonfly/crypto/libressl/include/openssl/
H A Dui.h88 UI *UI_new_method(const UI_METHOD *method);
327 int UI_method_set_opener(UI_METHOD *method, int (*opener)(UI *ui));
328 int UI_method_set_writer(UI_METHOD *method,
330 int UI_method_set_flusher(UI_METHOD *method, int (*flusher)(UI *ui));
331 int UI_method_set_reader(UI_METHOD *method,
333 int UI_method_set_closer(UI_METHOD *method, int (*closer)(UI *ui));
334 int UI_method_set_prompt_constructor(UI_METHOD *method,
337 int (*UI_method_get_opener(const UI_METHOD *method))(UI *);
338 int (*UI_method_get_writer(const UI_METHOD *method))(UI *, UI_STRING *);
339 int (*UI_method_get_flusher(const UI_METHOD *method))(UI *);
[all …]
/dragonfly/sys/dev/acpica/acpi_fujitsu/
H A Dacpi_fujitsu.c175 int method; member
180 .method = METHOD_MUTE,
185 .method = METHOD_GMOU,
190 .method = METHOD_GBLL,
195 .method = METHOD_GBLS,
200 .method = METHOD_GVOL,
205 .method = METHOD_RVOL,
437 int method; in acpi_fujitsu_sysctl() local
443 method = sysctl_table[function_num].method; in acpi_fujitsu_sysctl()
470 switch (method) { in acpi_fujitsu_method_get()
[all …]
/dragonfly/tools/regression/usr.sbin/installer/libaura/dict2/
H A Ddict2.c37 m2s(int method) in m2s() argument
39 switch(method) { in m2s()
56 test_store(int method) in test_store() argument
60 d = aura_dict_new(ELEMS, method); in test_store()
66 m2s(method), keys[i], values[i]); in test_store()
72 test_fetch(struct aura_dict *d, int method) in test_fetch() argument
89 printf("%s_fetch: %s=>%d\n", m2s(method), keys[i], *val); in test_fetch()
/dragonfly/sys/dev/acpica/acpi_asus/
H A Dacpi_asus.c464 int method; member
880 char *method; in acpi_asus_led_task() local
889 method = sc->model->bled_set; in acpi_asus_led_task()
893 method = sc->model->dled_set; in acpi_asus_led_task()
897 method = sc->model->gled_set; in acpi_asus_led_task()
901 method = sc->model->mled_set; in acpi_asus_led_task()
944 int method; in acpi_asus_sysctl() local
950 method = acpi_asus_sysctls[function].method; in acpi_asus_sysctl()
976 switch (method) { in acpi_asus_sysctl_get()
1015 switch (method) { in acpi_asus_sysctl_set()
[all …]
/dragonfly/crypto/libressl/ssl/
H A Dssl_lib.c210 (s->method != s->ctx->method)) { in SSL_clear()
212 s->method = s->ctx->method; in SSL_clear()
341 s->method = ctx->method; in SSL_new()
917 if (t->method != f->method) { in SSL_copy_session_id()
919 t->method = f->method; in SSL_copy_session_id()
2489 if (s->method == method) in SSL_set_ssl_method()
2497 if (s->method->version == method->version) { in SSL_set_ssl_method()
2498 s->method = method; in SSL_set_ssl_method()
2501 s->method = method; in SSL_set_ssl_method()
2809 ret->method = s->method; in SSL_dup()
[all …]
/dragonfly/usr.sbin/ppp/
H A Dlqr.c162 if (p->hdlc.lqm.method & LQM_LQR) { in SendLqrReport()
169 p->hdlc.lqm.method = 0; in SendLqrReport()
175 } else if (p->hdlc.lqm.method & LQM_ECHO) { in SendLqrReport()
184 p->hdlc.lqm.method = 0; in SendLqrReport()
242 !(p->hdlc.lqm.method & LQM_LQR) || in lqr_Input()
269 physical->hdlc.lqm.method = LQM_ECHO; in lqr_Setup()
271 physical->hdlc.lqm.method |= LQM_LQR; in lqr_Setup()
326 if (method == LQM_LQR) in lqr_Stop()
329 if (method == LQM_ECHO) in lqr_Stop()
332 physical->hdlc.lqm.method &= ~method; in lqr_Stop()
[all …]
/dragonfly/usr.sbin/pwd_mkdb/
H A Dpwd_mkdb.c103 u_int method, methoduid; in main() local
273 method = 0; in main()
287 method = R_NOOVERWRITE; in main()
396 if ((dp->put)(dp, &key, &data, method) == -1) in main()
404 if ((dp->put)(dp, &key, &data, method) == -1) in main()
446 if ((dp->put)(dp, &key, &data, method) == -1) in main()
487 if ((dp->put)(dp, &key, &data, method) == -1) in main()
495 if ((dp->put)(dp, &key, &data, method) == -1) in main()
537 if ((dp->put)(dp, &key, &data, method) == -1) in main()
567 if ((dp->put)(dp, &key, &data, method) == -1) in main()
[all …]
/dragonfly/sys/dev/acpica/acpi_thinkpad/
H A Dacpi_thinkpad.c211 int method; member
217 .method = ACPI_THINKPAD_METHOD_EVENTS,
227 .method = ACPI_THINKPAD_METHOD_HOTKEY,
238 .method = ACPI_THINKPAD_METHOD_VOLUME,
243 .method = ACPI_THINKPAD_METHOD_MUTE,
258 .method = ACPI_THINKPAD_METHOD_WLAN,
727 int method; in acpi_thinkpad_sysctl() local
733 method = acpi_thinkpad_sysctls[function].method; in acpi_thinkpad_sysctl()
760 switch (method) { in acpi_thinkpad_sysctl_get()
900 switch (method) { in acpi_thinkpad_sysctl_set()
[all …]

12345678910>>...13