Home
last modified time | relevance | path

Searched full:method (Results 1 – 25 of 4755) sorted by relevance

12345678910>>...191

/freebsd-src/crypto/openssl/crypto/x509/
H A Dx509_meth.c22 X509_LOOKUP_METHOD *method = OPENSSL_zalloc(sizeof(X509_LOOKUP_METHOD)); in X509_LOOKUP_meth_new() local
24 if (method != NULL) { in X509_LOOKUP_meth_new()
25 method->name = OPENSSL_strdup(name); in X509_LOOKUP_meth_new()
26 if (method->name == NULL) { in X509_LOOKUP_meth_new()
32 return method; in X509_LOOKUP_meth_new()
35 OPENSSL_free(method); in X509_LOOKUP_meth_new()
39 void X509_LOOKUP_meth_free(X509_LOOKUP_METHOD *method) in X509_LOOKUP_meth_free() argument
41 if (method != NULL) in X509_LOOKUP_meth_free()
42 OPENSSL_free(method->name); in X509_LOOKUP_meth_free()
43 OPENSSL_free(method); in X509_LOOKUP_meth_free()
[all …]
/freebsd-src/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
26 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()
38 * eap_server_get_type - Get EAP type for the given EAP method name
39 * @name: EAP method name, e.g., TLS
41 * Returns: EAP method type or %EAP_TYPE_NONE if not found
52 return m->method; in eap_server_get_type()
[all …]
H A Deap_i.h19 * struct eap_method - EAP method interface
20 * This structure defines the EAP method interface. Each method will need to
21 * register its own EAP type, EAP name, and set of function pointers for method
26 enum eap_type method; member
45 * free - Free EAP method data
46 * @method: Pointer to the method data registered with
49 * This function will be called when the EAP method is being
50 * unregistered. If the EAP method allocate
[all...]
/freebsd-src/sys/net/
H A Difdi_if.m126 METHOD int attach_pre {
130 METHOD int attach_post {
134 METHOD int reinit_pre {
138 METHOD int reinit_post {
142 METHOD int detach {
146 METHOD int suspend {
150 METHOD int shutdown {
154 METHOD int resume {
163 METHOD int tx_queues_alloc {
171 METHOD int rx_queues_alloc {
[all …]
/freebsd-src/contrib/wpa/src/eap_peer/
H A Deap_methods.c2 * EAP peer: Method registration
21 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
31 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()
43 * eap_peer_get_type - Get EAP type for the given EAP method name
44 * @name: EAP method name, e.g., TLS
46 * Returns: EAP method type or %EAP_TYPE_NONE if not found
[all …]
H A Deap_i.h39 * ignore - Whether method decided to drop the current packed (OUT)
44 * methodState - Method-specific state (IN/OUT)
54 * allowNotifications - Whether method allows notifications (OUT)
61 * struct eap_method - EAP method interface
62 * This structure defines the EAP method interface. Each method will need to
63 * register its own EAP type, EAP name, and set of function pointers for method
73 * method - EAP type number (EAP_TYPE_*)
75 enum eap_type method; member
78 * name - Name of the method (
[all...]
/freebsd-src/sys/dev/ntb/
H A Dntb_if.m63 METHOD int port_number {
67 METHOD int peer_port_count {
71 METHOD int peer_port_number {
76 METHOD int peer_port_idx {
81 METHOD bool link_is_up {
87 METHOD int link_enable {
93 METHOD int link_disable {
97 METHOD bool link_enabled {
101 METHOD int set_ctx {
107 METHOD void * get_ctx {
[all …]
/freebsd-src/sys/dev/pci/
H A Dpci_if.m71 METHOD u_int32_t read_config {
78 METHOD void write_config {
86 METHOD int get_powerstate {
91 METHOD int set_powerstate {
97 METHOD int get_vpd_ident {
103 METHOD int get_vpd_readonly {
110 METHOD int enable_busmaster {
115 METHOD int disable_busmaster {
120 METHOD int enable_io {
126 METHOD int disable_io {
[all …]
/freebsd-src/sys/contrib/dev/acpica/components/dispatcher/
H A Ddsmethod.c3 * Module Name: dsmethod - Parser/Interpreter interface - control method parsing
181 * PARAMETERS: Node - Namespace Node of the method
182 * ObjDesc - Method object attached to node
186 * DESCRIPTION: Parse a control method AML to scan for control methods that
190 * there is only a problem if the method actually blocks during execution.
193 * detect whether a method will block or not, so we simply mark all suspicious
197 * control method.
215 "Method auto-serialization parse [%4.4s] %p\n", in AcpiDsAutoSerializeMethod()
218 /* Create/Init a root op for the method parse tree */ in AcpiDsAutoSerializeMethod()
220 Op = AcpiPsAllocOp (AML_METHOD_OP, ObjDesc->Method in AcpiDsAutoSerializeMethod()
[all...]
/freebsd-src/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
[all...]
/freebsd-src/sys/dev/uart/
H A Duart_if.m53 # This method is called when the device is being attached. All resources
56 # The intend of this method is to setup the hardware for normal operation.
57 METHOD int attach {
62 # This method is called when a device is being detached from its bus. It
65 # The intend of this method is to disable the hardware.
66 METHOD int detach {
71 # This method is called to flush the transmitter and/or the receiver as
73 METHOD int flush {
79 # This method retrieves the DTE and DCE signals and their corresponding
85 METHOD int getsig {
[all …]
/freebsd-src/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);
40 It's important to keep in mind that a method is identified by three things:
54 ossl_method_construct() creates a method by asking all available
57 method creator through I<mcm> and the data in I<mcm_data> (which is
[all …]
/freebsd-src/crypto/openssl/doc/man3/
H A DUI_create_method.pod14 interface method creation and destruction
24 int UI_method_set_opener(UI_METHOD *method, int (*opener) (UI *ui));
25 int UI_method_set_writer(UI_METHOD *method,
27 int UI_method_set_flusher(UI_METHOD *method, int (*flusher) (UI *ui));
28 int UI_method_set_reader(UI_METHOD *method,
30 int UI_method_set_closer(UI_METHOD *method, int (*closer) (UI *ui));
31 int UI_method_set_data_duplicator(UI_METHOD *method,
34 int UI_method_set_prompt_constructor(UI_METHOD *method,
40 int UI_method_set_ex_data(UI_METHOD *method, int idx, void *data);
41 int (*UI_method_get_opener(const UI_METHOD *method)) (UI *);
[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,
34 int (*X509_LOOKUP_meth_get_new_item(const X509_LOOKUP_METHOD* method))
37 int X509_LOOKUP_meth_set_free(X509_LOOKUP_METHOD *method,
39 void (*X509_LOOKUP_meth_get_free(const X509_LOOKUP_METHOD* method))
42 int X509_LOOKUP_meth_set_init(X509_LOOKUP_METHOD *method,
44 int (*X509_LOOKUP_meth_get_init(const X509_LOOKUP_METHOD* method))
47 int X509_LOOKUP_meth_set_shutdown(X509_LOOKUP_METHOD *method,
49 int (*X509_LOOKUP_meth_get_shutdown(const X509_LOOKUP_METHOD* method))
54 int X509_LOOKUP_meth_set_ctrl(X509_LOOKUP_METHOD *method,
[all...]
/freebsd-src/stand/ficl/softwords/
H A Doo.fr27 \ access method
37 \ The NEW method creates and initializes an instance of a class.
52 \ has an extra field for the vtable method count. Hasvtable declares
55 \ Revised Nov 2001 - metaclass debug method now finds only metaclass methods
59 \ END-CLASS allocates and clears the vtable - then it walks class's method
60 \ list and inserts all new methods into table. For each method, if the table
61 \ slot is already nonzero, do nothing (overridden method). Otherwise fill
70 \ : is redefined to check for override, fill in vtable index, increment method
84 \ Compile the method name, and code to find and
89 \ compiles a method name so that it pushes
[all …]
/freebsd-src/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>
56 <method><ref>0x80712c0</ref></method>
68 <method><ref>0x80712c0</ref></method>
80 <method><ref>0x80712c0</ref></method>
92 <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>
56 <method><ref>0x90712c0</ref></method>
68 <method><ref>0x90712c0</ref></method>
80 <method><ref>0x90712c0</ref></method>
92 <method><ref>0x90712c0</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>
56 <method><ref>0x80712c0</ref></method>
68 <method><ref>0x80712c0</ref></method>
80 <method><ref>0x80712c0</ref></method>
92 <method><ref>0x80712c0</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>
56 <method><ref>0x80712c0</ref></method>
68 <method><ref>0x80712c0</ref></method>
80 <method><ref>0x80712c0</ref></method>
92 <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>
56 <method><ref>0x80712c0</ref></method>
68 <method><ref>0x80712c0</ref></method>
80 <method><ref>0x80712c0</ref></method>
92 <method><ref>0x80712c0</ref></method>
[all …]
/freebsd-src/sys/dev/etherswitch/
H A Detherswitch_if.m81 METHOD etherswitch_info_t* getinfo {
88 METHOD void lock {
95 METHOD void unlock {
102 METHOD int readreg {
110 METHOD int writereg {
119 METHOD int readphyreg {
128 METHOD int writephyreg {
138 METHOD int getport {
146 METHOD int setport {
154 METHOD int getvgroup {
[all …]
/freebsd-src/sys/dev/ofw/
H A Dofw_if.m45 METHOD int init {
55 METHOD phandle_t peer {
65 METHOD phandle_t parent {
75 METHOD phandle_t child {
85 METHOD phandle_t instance_to_package {
96 METHOD ssize_t getproplen {
110 METHOD ssize_t getprop {
126 METHOD int nextprop {
142 METHOD int setprop {
157 METHOD ssize_t canon {
[all …]
/freebsd-src/sys/kern/
H A Ddevice_if.m79 * Users should not call this method directly. Normally, this
113 * For example, a probe method for a PCI device driver might look
129 * To include this method in a device driver, use a line like this
130 * in the driver's method list:
155 METHOD int probe {
162 * The DEVICE_IDENTIFY() method is used by some drivers (e.g. the ISA
164 * child devices, normally by calling the BUS_ADD_CHILD() method of
171 * use this method at all since child devices can be discovered
174 * To include this method in a device driver, use a line like this
175 * in the driver's method list:
[all …]
/freebsd-src/crypto/openssl/crypto/property/
H A Dproperty.c35 void *method; member
38 } METHOD; typedef
43 METHOD method; member
51 METHOD method; member
169 static int ossl_method_up_ref(METHOD *method) in ossl_method_up_ref()
171 return (*method->up_ref)(method in ossl_method_up_ref()
167 ossl_method_up_ref(METHOD * method) ossl_method_up_ref() argument
172 ossl_method_free(METHOD * method) ossl_method_free() argument
298 ossl_method_store_add(OSSL_METHOD_STORE * store,const OSSL_PROVIDER * prov,int nid,const char * properties,void * method,int (* method_up_ref)(void *),void (* method_destruct)(void *)) ossl_method_store_add() argument
380 ossl_method_store_remove(OSSL_METHOD_STORE * store,int nid,const void * method) ossl_method_store_remove() argument
466 alg_do_one(ALGORITHM * alg,IMPLEMENTATION * impl,void (* fn)(int id,void * method,void * fnarg),void * fnarg) alg_do_one() argument
490 ossl_method_store_do_all(OSSL_METHOD_STORE * store,void (* fn)(int id,void * method,void * fnarg),void * fnarg) ossl_method_store_do_all() argument
503 ossl_method_store_fetch(OSSL_METHOD_STORE * store,int nid,const char * prop_query,const OSSL_PROVIDER ** prov_rw,void ** method) ossl_method_store_fetch() argument
681 ossl_method_store_cache_get(OSSL_METHOD_STORE * store,OSSL_PROVIDER * prov,int nid,const char * prop_query,void ** method) ossl_method_store_cache_get() argument
711 ossl_method_store_cache_set(OSSL_METHOD_STORE * store,OSSL_PROVIDER * prov,int nid,const char * prop_query,void * method,int (* method_up_ref)(void *),void (* method_destruct)(void *)) ossl_method_store_cache_set() argument
[all...]
/freebsd-src/crypto/openssh/
H A Dauth2.c100 #define MATCH_NONE 0 /* method or submethod mismatch */
101 #define MATCH_METHOD 1 /* method matches (no submethod specified) */
102 #define MATCH_BOTH 2 /* method and submethod match */
103 #define MATCH_PARTIAL 3 /* method matches, submethod can't be checked */
274 char *user = NULL, *service = NULL, *method = NULL, *style = NULL; in input_userauth_request() local
283 (r = sshpkt_get_cstring(ssh, &method, NULL)) != 0) in input_userauth_request()
285 debug("userauth-request for user %s service %s method %s", user, service, method); in input_userauth_request()
346 m = authmethod_lookup(authctxt, method); in input_userauth_request()
348 debug2("input_userauth_request: try method %s", method); in input_userauth_request()
349 authenticated = m->userauth(ssh, method); in input_userauth_request()
[all …]

12345678910>>...191