Home
last modified time | relevance | path

Searched refs:methods (Results 1 – 25 of 530) sorted by relevance

12345678910>>...22

/src/sys/netipsec/
H A Dipsec_support.h111 const struct tcpmd5_methods * const methods; member
116 (*tcp_ipsec_support->methods->input)(m, __VA_ARGS__)
118 (*tcp_ipsec_support->methods->output)(m, __VA_ARGS__)
120 (*tcp_ipsec_support->methods->pcbctl)(inp, sopt)
125 const struct tcpmd5_methods * volatile methods; member
151 const struct ipsec_methods * const methods; member
157 (*(proto ## _ipsec_support)->methods->input)(m, __VA_ARGS__)
159 (*(proto ## _ipsec_support)->methods->check_policy)(m, __VA_ARGS__)
161 (*(proto ## _ipsec_support)->methods->forward)(m)
163 (*(proto ## _ipsec_support)->methods->output)(m, __VA_ARGS__)
[all …]
H A Dsubr_ipsec.c238 ret = (*sc->methods->method)(args); \
272 .methods = NULL
292 tcpmd5_support_enable(const struct tcpmd5_methods * const methods) in IPSEC_KMOD_METHOD()
296 tcp_ipsec_support->methods = methods; in IPSEC_KMOD_METHOD()
306 tcp_ipsec_support->methods = NULL; in tcpmd5_support_disable()
318 .methods = NULL
326 .methods = NULL
398 const struct ipsec_methods * const methods) in ipsec_support_enable() argument
402 sc->methods = methods; in ipsec_support_enable()
412 sc->methods = NULL; in ipsec_support_disable()
/src/sys/sys/
H A Dkobj.h56 kobj_method_t *methods; /* method table */ \
114 #define DEFINE_CLASS(name, methods, size) \ argument
115 DEFINE_CLASS_0(name, name ## _class, methods, size)
122 #define DEFINE_CLASS_0(name, classvar, methods, size) \ argument
125 #name, methods, size, NULL \
134 #define DEFINE_CLASS_1(name, classvar, methods, size, \ argument
140 #name, methods, size, name ## _baseclasses \
149 #define DEFINE_CLASS_2(name, classvar, methods, size, \ argument
156 #name, methods, size, name ## _baseclasses \
165 #define DEFINE_CLASS_3(name, classvar, methods, size, \ argument
[all …]
/src/contrib/wpa/src/ap/
H A Deap_user_db.c23 static void set_user_methods(struct hostapd_eap_user *user, const char *methods) in set_user_methods() argument
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()
42 if (user->methods[num_methods].vendor == EAP_VENDOR_IETF && 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()
[all …]
/src/lib/libusb/
H A Dlibusb20.c134 error = xfer->pdev->methods->tr_close(xfer); in libusb20_tr_close()
211 error = xfer->pdev->methods->tr_open(xfer, MaxBufSize, in libusb20_tr_open_stream()
214 error = xfer->pdev->methods->tr_open(xfer, MaxBufSize, in libusb20_tr_open_stream()
324 xfer->pdev->methods->tr_cancel_async(xfer); in libusb20_tr_stop()
347 xfer->pdev->methods->tr_clear_stall_sync(xfer); in libusb20_tr_clear_stall_sync()
551 xfer->pdev->methods->tr_submit(xfer); in libusb20_tr_submit()
606 pdev->methods = &libusb20_dummy_methods; in libusb20_dev_close()
635 error = pdev->methods->detach_kernel_driver(pdev, ifaceIndex); in libusb20_dev_detach_kernel_driver()
656 error = pdev->methods->kernel_driver_active(pdev, ifaceIndex); in libusb20_dev_kernel_driver_active()
715 error = pdev->methods->reset_device(pdev); in libusb20_dev_reset()
[all …]
/src/contrib/wpa/wpa_supplicant/dbus/
H A Ddbus_new_handlers_wps.c441 char *methods, *new_methods; in wpas_dbus_setter_config_methods() local
444 &methods)) in wpas_dbus_setter_config_methods()
447 new_methods = os_strdup(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()
501 if (os_strlen(methods) > WPS_DEV_NAME_MAX_LEN) 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()
557 if (os_strlen(methods) > WPS_MANUFACTURER_MAX_LEN) in wpas_dbus_setter_wps_manufacturer()
[all …]
/src/crypto/openssl/doc/man3/
H A DSSL_COMP_add_compression_method.pod7 - 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 DSSL_CTX_new.pod125 These are the general-purpose I<version-flexible> SSL/TLS methods.
129 Applications should use these methods, and avoid the version-specific
130 methods described below, which are deprecated.
143 A TLS/SSL connection established with these methods will only understand the
144 TLSv1.2 protocol. These methods are deprecated.
148 A TLS/SSL connection established with these methods will only understand the
149 TLSv1.1 protocol. These methods are deprecated.
153 A TLS/SSL connection established with these methods will only understand the
154 TLSv1 protocol. These methods are deprecated.
158 A TLS/SSL connection established with these methods will only understand the
[all …]
H A DEVP_PKEY_meth_get_count.pod5 EVP_PKEY_meth_get_count, EVP_PKEY_meth_get0, EVP_PKEY_meth_get0_info - enumerate public key methods
25 EVP_PKEY_meth_count() returns a count of the number of public key methods
26 available: it includes standard methods and any methods added by the
37 EVP_PKEY_meth_count() returns the number of available public key methods.
H A DEVP_PKEY_meth_new.pod250 B<EVP_PKEY_METHOD> is a structure which holds a set of methods for a
251 specific public key cryptographic algorithm. Those methods are usually
256 is a built-in static array representing the standard methods for different
258 methods, which can be manipulated by using L<EVP_PKEY_meth_add0(3)>.
265 The methods are the underlying implementations of a particular public key
281 The paramgen_init() and paramgen() methods deal with key parameter generation.
288 The keygen_init() and keygen() methods are used to generate the actual key for
296 The sign_init() and sign() methods are used to generate the signature of a
305 The verify_init() and verify() methods are used to verify whether a signature is
313 The verify_recover_init() and verify_recover() methods are used to verify a
[all …]
H A DEVP_PKEY_asn1_get_count.pod10 - 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.
/src/contrib/wpa/hostapd/
H A Dhostapd.eap_user_sqlite3 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');
/src/contrib/ntp/sntp/libevent/test/
H A Dbench.c151 const char **methods; local
177 methods = event_get_supported_methods();
180 for (i = 0; methods[i] != NULL; ++i)
181 printf(" %s\n", methods[i]);
206 methods = event_get_supported_methods();
207 for (i = 0; methods[i] != NULL; ++i)
208 if (strcmp(methods[i], method))
209 event_config_avoid_method(cfg, methods[i]);
/src/contrib/libevent/test/
H A Dbench.c151 const char **methods; local
177 methods = event_get_supported_methods();
180 for (i = 0; methods[i] != NULL; ++i)
181 printf(" %s\n", methods[i]);
206 methods = event_get_supported_methods();
207 for (i = 0; methods[i] != NULL; ++i)
208 if (strcmp(methods[i], method))
209 event_config_avoid_method(cfg, methods[i]);
/src/contrib/wpa/src/wps/
H A Dwps_common.c530 u16 methods = 0; in wps_config_methods_str2bin() local
534 methods |= WPS_CONFIG_DISPLAY | WPS_CONFIG_KEYPAD; in wps_config_methods_str2bin()
535 methods |= WPS_CONFIG_VIRT_DISPLAY; in wps_config_methods_str2bin()
537 methods |= WPS_CONFIG_NFC_INTERFACE; 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()
550 methods |= WPS_CONFIG_EXT_NFC_TOKEN; in wps_config_methods_str2bin()
552 methods |= WPS_CONFIG_INT_NFC_TOKEN; in wps_config_methods_str2bin()
[all …]
/src/sys/dev/usb/controller/
H A Dusb_controller.c121 .methods = usb_methods,
499 if (bus->methods->set_hw_power != NULL) in usb_bus_suspend()
500 (bus->methods->set_hw_power) (bus); in usb_bus_suspend()
502 if (bus->methods->set_hw_power_sleep != NULL) in usb_bus_suspend()
503 (bus->methods->set_hw_power_sleep) (bus, USB_HW_POWER_SUSPEND); in usb_bus_suspend()
550 if (bus->methods->set_hw_power_sleep != NULL) in usb_bus_resume()
551 (bus->methods->set_hw_power_sleep) (bus, USB_HW_POWER_RESUME); in usb_bus_resume()
553 if (bus->methods->set_hw_power != NULL) in usb_bus_resume()
554 (bus->methods->set_hw_power) (bus); in usb_bus_resume()
630 if (bus->methods->set_hw_power != NULL) in usb_bus_shutdown()
[all …]
H A Dohci.c407 sc->sc_bus.methods = &ohci_bus_methods; in ohci_init()
1001 } else if (xfer->endpoint->methods == &ohci_device_bulk_methods) { in ohci_check_transfer_sub()
1005 } else if (xfer->endpoint->methods == &ohci_device_ctrl_methods) { in ohci_check_transfer_sub()
1037 if (xfer->endpoint->methods == &ohci_device_isoc_methods) { in ohci_check_transfer()
1382 const struct usb_pipe_methods *methods; in ohci_setup_standard_chain() local
1409 methods = xfer->endpoint->methods; in ohci_setup_standard_chain()
1562 if (methods == &ohci_device_bulk_methods) { in ohci_setup_standard_chain()
1567 if (methods == &ohci_device_ctrl_methods) { in ohci_setup_standard_chain()
1616 const struct usb_pipe_methods *methods = xfer->endpoint->methods; in ohci_device_done() local
1629 if (methods == &ohci_device_bulk_methods) { in ohci_device_done()
[all …]
H A Duhci.c638 sc->sc_bus.methods = &uhci_bus_methods; in uhci_init()
1301 if (xfer->endpoint->methods == &uhci_device_isoc_methods) { in uhci_check_transfer()
1817 const struct usb_pipe_methods *methods = xfer->endpoint->methods; in uhci_device_done() local
1834 if (methods == &uhci_device_bulk_methods) { in uhci_device_done()
1837 if (methods == &uhci_device_ctrl_methods) { in uhci_device_done()
1844 if (methods == &uhci_device_intr_methods) { in uhci_device_done()
1853 if (methods == &uhci_device_isoc_methods) { in uhci_device_done()
2789 if (parm->methods == &uhci_device_ctrl_methods) { in uhci_xfer_setup()
2801 } else if (parm->methods == &uhci_device_bulk_methods) { in uhci_xfer_setup()
2811 } else if (parm->methods == &uhci_device_intr_methods) { in uhci_xfer_setup()
[all …]
/src/crypto/openssh/
H A Dauth2-methods.c95 char *methods, *omethods, *method, *p; in auth2_methods_valid() local
104 omethods = methods = xstrdup(_methods); in auth2_methods_valid()
105 while ((method = strsep(&methods, ",")) != NULL) { in auth2_methods_valid()
H A Dauth2.c367 char *methods; in userauth_finish() local
453 methods = authmethods_get(authctxt); in userauth_finish()
455 partial, methods); in userauth_finish()
457 (r = sshpkt_put_cstring(ssh, methods)) != 0 || in userauth_finish()
462 free(methods); in userauth_finish()
603 list_starts_with(const char *methods, const char *method, in list_starts_with() argument
610 if (strncmp(methods, method, l) != 0) in list_starts_with()
612 p = methods + l; in list_starts_with()
635 remove_method(char **methods, const char *method, const char *submethod) in remove_method() argument
637 char *omethods = *methods, *p; in remove_method()
[all …]
/src/contrib/lutok/
H A DNEWS15 * Issue 5: New methods added to the state class: open_all.
17 * Removed default parameter values from all state methods and all
45 * New methods added to the state class: get_global_table.
57 * New methods added to the state class: get_metafield, get_metatable,
/src/sys/dev/usb/
H A Dusb_dev.c521 f->methods = &usb_ugen_methods; in usb_fifo_create()
546 f->methods = &usb_ugen_methods; in usb_fifo_create()
712 err = (f->methods->f_open) (f, fflags); in usb_fifo_open()
827 (f->methods->f_start_write) (f); in usb_fifo_close()
845 (f->methods->f_stop_write) (f); in usb_fifo_close()
850 (f->methods->f_stop_read) (f); in usb_fifo_close()
860 (f->methods->f_close) (f, fflags); in usb_fifo_close()
1093 err = (f->methods->f_ioctl) (f, cmd, addr, fflags); in usb_ioctl()
1105 err = (f->methods->f_ioctl_post) (f, cmd, addr, fflags); in usb_ioctl()
1170 (f->methods->f_start_write) (f); in usb_filter_write()
[all …]
/src/contrib/wpa/src/eap_peer/
H A Deap_tls_common.c1110 struct eap_method_type *methods = NULL, *_methods; in eap_peer_select_phase2_methods() local
1145 os_free(methods); in eap_peer_select_phase2_methods()
1150 _methods = os_realloc_array(methods, num_methods, in eap_peer_select_phase2_methods()
1151 sizeof(*methods)); in eap_peer_select_phase2_methods()
1153 os_free(methods); in eap_peer_select_phase2_methods()
1157 methods = _methods; in eap_peer_select_phase2_methods()
1158 methods[num_methods - 1].vendor = vendor; in eap_peer_select_phase2_methods()
1159 methods[num_methods - 1].method = method; in eap_peer_select_phase2_methods()
1168 if (methods == NULL) in eap_peer_select_phase2_methods()
1169 methods = eap_get_phase2_types(config, &num_methods); in eap_peer_select_phase2_methods()
[all …]
/src/sys/ofed/include/rdma/
H A Duverbs_named_ioctl.h83 .methods = &UVERBS_OBJECT_METHODS(_object_id) \
97 .methods = &UVERBS_OBJECT_METHODS(_object_id) \
108 .methods = &UVERBS_OBJECT_METHODS(_object_id) \
/src/stand/ficl/softwords/
H A Doo.fr18 \ 4. Separate name-spaces for methods - methods are
20 \ 5. Methods can be overridden, and subclasses can add methods.
21 \ No limit on number of methods.
35 \ ID for the methods of the class, and a size for the payload
48 \ Overridden methods must maintain the same stack signature as
55 \ Revised Nov 2001 - metaclass debug method now finds only metaclass methods
60 \ list and inserts all new methods into table. For each method, if the table
186 \ This handles methods like index, prev, and next correctly, but does not deal
188 : my=[ \ same as my=> , but binds a chain of methods
346 \ classes have methods that are different from those
[all …]

12345678910>>...22