| /freebsd-12.1/contrib/ntp/lib/isc/ |
| H A D | mem_api.c | 95 source->methods->attach(source, targetp); in isc_mem_attach() 104 (*mctxp)->methods->detach(mctxp); in isc_mem_detach() 113 (*mctxp)->methods->destroy(mctxp); in isc_mem_destroy() 176 mctx->methods->setdestroycheck(mctx, flag); in isc_mem_setdestroycheck() 192 ctx->methods->waterack(ctx, flag); in isc_mem_waterack() 199 return (mctx->methods->inuse(mctx)); in isc_mem_inuse() 206 return (mctx->methods->isovermem(mctx)); in isc_mem_isovermem() 244 (*mpctxp)->methods->destroy(mpctxp); in isc_mempool_destroy() 274 mpctx->methods->setmaxalloc(mpctx, limit); in isc_mempool_setmaxalloc() 281 mpctx->methods->setfreemax(mpctx, limit); in isc_mempool_setfreemax() [all …]
|
| H A D | task_api.c | 97 (*managerp)->methods->destroy(managerp); in isc_taskmgr_destroy() 106 manager->methods->setmode(manager, mode); in isc_taskmgr_setmode() 113 return (manager->methods->mode(manager)); in isc_taskmgr_mode() 131 source->methods->attach(source, targetp); in isc_task_attach() 140 (*taskp)->methods->detach(taskp); in isc_task_detach() 150 task->methods->send(task, eventp); in isc_task_send() 186 task->methods->shutdown(task); in isc_task_shutdown() 193 task->methods->setname(task, name, tag); in isc_task_setname() 215 task->methods->endexclusive(task); in isc_task_endexclusive() 222 task->methods->setprivilege(task, priv); in isc_task_setprivilege() [all …]
|
| H A D | socket_api.c | 90 (*managerp)->methods->destroy(managerp); in isc_socketmgr_destroy() 109 sock->methods->attach(sock, socketp); in isc_socket_attach() 118 (*socketp)->methods->detach(socketp); in isc_socket_detach() 129 return (sock->methods->bind(sock, sockaddr, options)); in isc_socket_bind() 165 sock->methods->cancel(sock, task, how); in isc_socket_cancel() 172 return (sock->methods->getsockname(sock, addressp)); in isc_socket_getsockname() 179 sock->methods->ipv6only(sock, yes); in isc_socket_ipv6only() 186 return (sock->methods->gettype(sock)); in isc_socket_gettype() 215 return(sock->methods->fdwatchpoke(sock, flags)); in isc_socket_fdwatchpoke() 223 return(sock->methods->dup(sock, socketp)); in isc_socket_dup() [all …]
|
| H A D | app_api.c | 74 (*ctxp)->methods->ctxdestroy(ctxp); in isc_appctx_destroy() 83 return (ctx->methods->ctxstart(ctx)); in isc_app_ctxstart() 90 return (ctx->methods->ctxrun(ctx)); in isc_app_ctxrun() 97 return (ctx->methods->ctxsuspend(ctx)); in isc_app_ctxsuspend() 104 return (ctx->methods->ctxshutdown(ctx)); in isc_app_ctxshutdown() 111 ctx->methods->ctxfinish(ctx); in isc_app_ctxfinish() 119 ctx->methods->settaskmgr(ctx, taskmgr); in isc_appctx_settaskmgr() 127 ctx->methods->setsocketmgr(ctx, socketmgr); in isc_appctx_setsocketmgr() 135 ctx->methods->settimermgr(ctx, timermgr); in isc_appctx_settimermgr()
|
| H A D | timer_api.c | 92 (*managerp)->methods->destroy(managerp); in isc_timermgr_destroy() 105 return (manager->methods->timercreate(manager, type, expires, in isc_timer_create() 115 timer->methods->attach(timer, timerp); in isc_timer_attach() 124 (*timerp)->methods->detach(timerp); in isc_timer_detach() 136 return (timer->methods->reset(timer, type, expires, interval, purge)); in isc_timer_reset() 143 return (timer->methods->touch(timer)); in isc_timer_touch()
|
| /freebsd-12.1/sys/netipsec/ |
| H A D | ipsec_support.h | 78 const struct tcpmd5_methods * const methods; member 83 (*tcp_ipsec_support->methods->input)(m, __VA_ARGS__) 85 (*tcp_ipsec_support->methods->output)(m, __VA_ARGS__) 87 (*tcp_ipsec_support->methods->pcbctl)(inp, sopt) 92 const struct tcpmd5_methods * volatile methods; member 118 const struct ipsec_methods * const methods; member 128 (*(proto ## _ipsec_support)->methods->forward)(m) 132 (*(proto ## _ipsec_support)->methods->pcbctl)(inp, sopt) 136 (*(proto ## _ipsec_support)->methods->hdrsize)(inp) 141 (*ipv4_ipsec_support->methods->udp_pcbctl)(inp, sopt) [all …]
|
| H A D | subr_ipsec.c | 251 ret = (*sc->methods->method)(args); \ 285 .methods = NULL 305 tcpmd5_support_enable(const struct tcpmd5_methods * const methods) in IPSEC_KMOD_METHOD() 309 tcp_ipsec_support->methods = methods; in IPSEC_KMOD_METHOD() 319 tcp_ipsec_support->methods = NULL; in tcpmd5_support_disable() 331 .methods = NULL 349 .methods = NULL 406 const struct ipsec_methods * const methods) in ipsec_support_enable() argument 410 sc->methods = methods; in ipsec_support_enable() 420 sc->methods = NULL; in ipsec_support_disable()
|
| /freebsd-12.1/sys/sys/ |
| H A D | kobj.h | 58 kobj_method_t *methods; /* method table */ \ 116 #define DEFINE_CLASS(name, methods, size) \ argument 117 DEFINE_CLASS_0(name, name ## _class, methods, size) 124 #define DEFINE_CLASS_0(name, classvar, methods, size) \ argument 127 #name, methods, size, NULL \ 136 #define DEFINE_CLASS_1(name, classvar, methods, size, \ argument 142 #name, methods, size, name ## _baseclasses \ 151 #define DEFINE_CLASS_2(name, classvar, methods, size, \ argument 158 #name, methods, size, name ## _baseclasses \ 167 #define DEFINE_CLASS_3(name, classvar, methods, size, \ argument [all …]
|
| /freebsd-12.1/contrib/wpa/src/ap/ |
| H A D | eap_user_db.c | 28 buf = os_strdup(methods); in set_user_methods() 32 os_memset(&user->methods, 0, sizeof(user->methods)); in set_user_methods() 39 user->methods[num_methods].method = in set_user_methods() 41 &user->methods[num_methods].vendor); in set_user_methods() 43 user->methods[num_methods].method == EAP_TYPE_NONE) { in set_user_methods() 106 int i, id = -1, methods = -1; in get_wildcard_cb() local 113 methods = i; in get_wildcard_cb() 116 if (id < 0 || methods < 0) in get_wildcard_cb() 127 set_user_methods(user, argv[methods]); in get_wildcard_cb() 244 "WSC", &wsc_enrollee.methods[0].vendor); in hostapd_get_eap_user() [all …]
|
| /freebsd-12.1/contrib/wpa/wpa_supplicant/dbus/ |
| H A D | dbus_new_handlers_wps.c | 441 char *methods, *new_methods; in wpas_dbus_setter_config_methods() local 444 &methods)) in wpas_dbus_setter_config_methods() 495 char *methods, *devname; in wpas_dbus_setter_wps_device_name() local 498 &methods)) in wpas_dbus_setter_wps_device_name() 504 devname = os_strdup(methods); in wpas_dbus_setter_wps_device_name() 551 char *methods, *manufacturer; in wpas_dbus_setter_wps_manufacturer() local 554 &methods)) in wpas_dbus_setter_wps_manufacturer() 607 char *methods, *model_name; in wpas_dbus_setter_wps_device_model_name() local 610 &methods)) in wpas_dbus_setter_wps_device_model_name() 665 &methods)) in wpas_dbus_setter_wps_device_model_number() [all …]
|
| /freebsd-12.1/lib/libusb/ |
| H A D | libusb20.c | 134 error = xfer->pdev->methods->tr_close(xfer); in libusb20_tr_close() 324 xfer->pdev->methods->tr_cancel_async(xfer); in libusb20_tr_stop() 551 xfer->pdev->methods->tr_submit(xfer); in libusb20_tr_submit() 606 pdev->methods = &libusb20_dummy_methods; in libusb20_dev_close() 1007 pdev->methods = &libusb20_dummy_methods; in libusb20_dev_alloc() 1058 error = pdev->methods->process(pdev); in libusb20_dev_process() 1241 pbe->methods = methods; /* set backend methods */ in libusb20_be_alloc() 1244 if (pbe->methods->init_backend) { in libusb20_be_alloc() 1245 pbe->methods->init_backend(pbe); in libusb20_be_alloc() 1293 if (pbe->methods->exit_backend) { in libusb20_be_free() [all …]
|
| /freebsd-12.1/crypto/openssl/doc/man3/ |
| H A D | SSL_CTX_new.pod | 97 methods described below, which are deprecated. 111 TLSv1.2 protocol. These methods are deprecated. 116 TLSv1.1 protocol. These methods are deprecated. 121 TLSv1 protocol. These methods are deprecated. 131 These are the version-flexible DTLS methods. 136 These are the version-specific methods for DTLSv1.2. 137 These methods are deprecated. 141 These are the version-specific methods for DTLSv1. 142 These methods are deprecated. 151 methods. [all …]
|
| H A D | SSL_COMP_add_compression_method.pod | 7 - handle SSL/TLS integrated compression methods 27 the identifier B<id> to the list of available compression methods. This 32 compression methods or NULL on error. 39 maintain the internal table of compression methods. 43 The TLS standard (or SSLv3) allows the integration of compression methods 45 methods or their corresponding identifiers, so there is currently no compatible 48 non-public use may agree on certain compression methods. Using different 49 compression methods with the same identifier will lead to connection failure. 52 will unconditionally send the list of all compression methods enabled with 58 its own compression methods and will unconditionally activate compression [all …]
|
| H A D | EVP_PKEY_meth_get_count.pod | 5 EVP_PKEY_meth_get_count, EVP_PKEY_meth_get0, EVP_PKEY_meth_get0_info - enumerate public key methods 18 EVP_PKEY_meth_count() returns a count of the number of public key methods 19 available: it includes standard methods and any methods added by the 30 EVP_PKEY_meth_count() returns the number of available public key methods.
|
| H A D | EVP_PKEY_meth_new.pod | 215 B<EVP_PKEY_METHOD> is a structure which holds a set of methods for a 216 specific public key cryptographic algorithm. Those methods are usually 221 is a built-in static array representing the standard methods for different 223 methods, which can be manipulated by using L<EVP_PKEY_meth_add0(3)>. 230 The methods are the underlying implementations of a particular public key 261 The sign_init() and sign() methods are used to generate the signature of a 278 The verify_recover_init() and verify_recover() methods are used to verify a 295 The verifyctx_init() and verifyctx() methods are used to verify a signature 323 The ctrl() and ctrl_str() methods are used to adjust algorithm-specific 332 The digestsign() and digestverify() methods are used to generate or verify [all …]
|
| H A D | EVP_PKEY_asn1_get_count.pod | 10 - enumerate public key ASN.1 methods 29 ASN.1 methods available: it includes standard methods and any methods 60 EVP_PKEY_asn1_count() returns the number of available public key methods.
|
| /freebsd-12.1/contrib/wpa/hostapd/ |
| H A D | hostapd.eap_user_sqlite | 3 methods TEXT, 12 methods TEXT 15 INSERT INTO users(identity,methods,password,phase2) VALUES ('user','TTLS-MSCHAPV2','password',1); 16 INSERT INTO users(identity,methods,password,phase2) VALUES ('DOMAIN\mschapv2 user','TTLS-MSCHAPV2',… 18 INSERT INTO wildcards(identity,methods) VALUES ('','TTLS,TLS'); 19 INSERT INTO wildcards(identity,methods) VALUES ('0','AKA');
|
| /freebsd-12.1/sys/powerpc/include/ |
| H A D | mmuvar.h | 89 #define MMU_DEF(name, ident, methods, size) \ argument 92 ident, methods, size, NULL \ 96 #define MMU_DEF_INHERIT(name, ident, methods, size, base1) \ argument 101 ident, methods, size, name ## _baseclasses \ 108 ident, methods, size, name ## _baseclasses \
|
| /freebsd-12.1/contrib/wpa/src/wps/ |
| H A D | wps_common.c | 530 u16 methods = 0; in wps_config_methods_str2bin() local 535 methods |= WPS_CONFIG_VIRT_DISPLAY; in wps_config_methods_str2bin() 540 methods |= WPS_CONFIG_P2PS; in wps_config_methods_str2bin() 544 methods |= WPS_CONFIG_ETHERNET; in wps_config_methods_str2bin() 546 methods |= WPS_CONFIG_LABEL; in wps_config_methods_str2bin() 548 methods |= WPS_CONFIG_DISPLAY; in wps_config_methods_str2bin() 556 methods |= WPS_CONFIG_PUSHBUTTON; in wps_config_methods_str2bin() 558 methods |= WPS_CONFIG_KEYPAD; in wps_config_methods_str2bin() 562 methods |= WPS_CONFIG_PHY_DISPLAY; in wps_config_methods_str2bin() 568 methods |= WPS_CONFIG_P2PS; in wps_config_methods_str2bin() [all …]
|
| /freebsd-12.1/sys/dev/usb/controller/ |
| H A D | usb_controller.c | 123 .methods = usb_methods, 500 if (bus->methods->set_hw_power != NULL) in usb_bus_suspend() 501 (bus->methods->set_hw_power) (bus); in usb_bus_suspend() 503 if (bus->methods->set_hw_power_sleep != NULL) in usb_bus_suspend() 551 if (bus->methods->set_hw_power_sleep != NULL) in usb_bus_resume() 554 if (bus->methods->set_hw_power != NULL) in usb_bus_resume() 555 (bus->methods->set_hw_power) (bus); in usb_bus_resume() 631 if (bus->methods->set_hw_power != NULL) in usb_bus_shutdown() 632 (bus->methods->set_hw_power) (bus); in usb_bus_shutdown() 761 if (bus->methods->set_hw_power != NULL) { in usb_bus_attach() [all …]
|
| H A D | ohci.c | 409 sc->sc_bus.methods = &ohci_bus_methods; in ohci_init() 1397 const struct usb_pipe_methods *methods; in ohci_setup_standard_chain() local 1424 methods = xfer->endpoint->methods; in ohci_setup_standard_chain() 1636 const struct usb_pipe_methods *methods = xfer->endpoint->methods; in ohci_device_done() local 2559 ep->methods = &ohci_device_ctrl_methods; in ohci_ep_init() 2562 ep->methods = &ohci_device_intr_methods; in ohci_ep_init() 2570 ep->methods = &ohci_device_bulk_methods; in ohci_ep_init() 2600 const struct usb_pipe_methods *methods; in ohci_device_resume() local 2611 methods = xfer->endpoint->methods; in ohci_device_resume() 2638 const struct usb_pipe_methods *methods; in ohci_device_suspend() local [all …]
|
| /freebsd-12.1/crypto/openssh/ |
| H A D | auth2.c | 373 char *methods; in userauth_finish() local 449 methods = authmethods_get(authctxt); in userauth_finish() 451 partial, methods); in userauth_finish() 453 packet_put_cstring(methods); in userauth_finish() 457 free(methods); in userauth_finish() 540 char *methods, *omethods, *method, *p; in auth2_methods_valid() local 548 omethods = methods = xstrdup(_methods); in auth2_methods_valid() 625 if (strncmp(methods, method, l) != 0) in list_starts_with() 627 p = methods + l; in list_starts_with() 652 char *omethods = *methods, *p; in remove_method() [all …]
|
| /freebsd-12.1/sys/dev/usb/ |
| H A D | usb_dev.c | 526 f->methods = &usb_ugen_methods; in usb_fifo_create() 552 f->methods = &usb_ugen_methods; in usb_fifo_create() 834 (f->methods->f_start_write) (f); in usb_fifo_close() 852 (f->methods->f_stop_write) (f); in usb_fifo_close() 857 (f->methods->f_stop_read) (f); in usb_fifo_close() 867 (f->methods->f_close) (f, fflags); in usb_fifo_close() 1457 (f->methods->f_start_read) (f); in usb_read() 1475 if (f->methods->f_filter_read) { in usb_read() 1571 (f->methods->f_start_write) (f); in usb_write() 1884 f_tx->methods = pm; in usb_fifo_attach() [all …]
|
| /freebsd-12.1/contrib/googletest/googlemock/scripts/generator/ |
| H A D | README.cppclean | 5 Unused code can be unused functions, methods, data members, types, etc 14 * Find and print C++ language constructs: classes, methods, functions, etc. 15 * Find classes with virtual methods, no virtual destructor, and no bases 25 * (planned) Unused members (private, protected, & public) methods and data 43 To print warnings for classes with virtual methods, no virtual destructor and 53 include: find_warnings, headers, methods, and types. Some other programs
|
| /freebsd-12.1/contrib/wpa/src/eap_peer/ |
| H A D | eap_tls_common.c | 1098 struct eap_method_type *methods = NULL, *_methods; in eap_peer_select_phase2_methods() local 1129 os_free(methods); in eap_peer_select_phase2_methods() 1135 sizeof(*methods)); in eap_peer_select_phase2_methods() 1137 os_free(methods); in eap_peer_select_phase2_methods() 1141 methods = _methods; in eap_peer_select_phase2_methods() 1142 methods[num_methods - 1].vendor = vendor; in eap_peer_select_phase2_methods() 1143 methods[num_methods - 1].method = method; in eap_peer_select_phase2_methods() 1152 if (methods == NULL) in eap_peer_select_phase2_methods() 1155 if (methods == NULL) { in eap_peer_select_phase2_methods() 1160 (u8 *) methods, in eap_peer_select_phase2_methods() [all …]
|