Searched refs:method (Results 1 - 25 of 364) sorted by relevance

1234567891011>>

/freebsd-10.0-release/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
25 const struct eap_method * eap_server_get_eap_method(int vendor, EapType method) argument
29 if (m->vendor == vendor && m->method == method)
37 * eap_server_get_type - Get EAP type for the given EAP method name
38 * @name: EAP method name, e.g., TLS
40 * Returns: EAP method typ
71 eap_server_method_alloc(int version, int vendor, EapType method, const char *name) argument
90 eap_server_method_free(struct eap_method *method) argument
105 eap_server_method_register(struct eap_method *method) argument
[all...]
H A Deap_methods.h2 * EAP server method registration
15 EapType method);
17 EapType method, const char *name);
18 void eap_server_method_free(struct eap_method *method);
19 int eap_server_method_register(struct eap_method *method);
25 /* EAP server method registration calls for statically linked in methods */
/freebsd-10.0-release/cddl/contrib/dtracetoolkit/Bin/
H A Dj_classflow.d3 * j_classflow.d - trace a Java class method flow using DTrace.
14 * This watches Java method entries and returns, and indents child
15 * method calls.
21 * CLASS.METHOD Java class and method name
24 * -> method entry
25 * <- method return
71 hotspot*:::method-entry,
72 hotspot*:::method-return
78 hotspot*:::method-entry
81 this->method
[all...]
H A Dj_flow.d3 * j_flow.d - snoop Java execution showing method flow using DTrace.
14 * This watches Java method entries and returns, and indents child
15 * method calls.
21 * CLASS.METHOD Java class and method name
24 * -> method entry
25 * <- method return
63 hotspot*:::method-entry
67 this->method = (char *)copyin(arg3, arg4 + 1);
68 this->method[arg4] = '\0';
72 stringof(this->method));
[all...]
H A Dj_methodcalls.d3 * j_methodcalls.d - count Java method calls DTrace.
17 * CLASS.METHOD Java class and method name
45 hotspot*:::method-entry
49 this->method = (char *)copyin(arg3, arg4 + 1);
50 this->method[arg4] = '\0';
52 stringof(this->method));
H A Dj_syscalls.d16 * TYPE Type of call (method/syscall)
46 hotspot$target:::method-entry
50 this->method = (char *)copyin(arg3, arg4 + 1);
51 this->method[arg4] = '\0';
53 stringof(this->method));
54 @calls[pid, "method", this->name] = count();
H A Dj_flowtime.d3 * j_flowtime.d - snoop Java execution with method flow and delta times.
14 * This watches Java method entries and returns, and indents child
15 * method calls.
23 * CLASS.METHOD Java class and method name
26 * -> method entry
27 * <- method return
66 hotspot*:::method-entry,
67 hotspot*:::method-return
73 hotspot*:::method-entry
78 this->method
[all...]
H A Dj_calls.d3 * j_calls.d - count Java calls (method/...) using DTrace.
23 * method method call
24 * mcompile method compile
25 * mload compiled method load
55 hotspot*:::method-entry
59 this->method = (char *)copyin(arg3, arg4 + 1);
60 this->method[arg4] = '\0';
62 stringof(this->method));
63 @calls[pid, "method", thi
[all...]
/freebsd-10.0-release/cddl/contrib/dtracetoolkit/Java/
H A Dj_classflow.d3 * j_classflow.d - trace a Java class method flow using DTrace.
14 * This watches Java method entries and returns, and indents child
15 * method calls.
21 * CLASS.METHOD Java class and method name
24 * -> method entry
25 * <- method return
71 hotspot*:::method-entry,
72 hotspot*:::method-return
78 hotspot*:::method-entry
81 this->method
[all...]
H A Dj_flow.d3 * j_flow.d - snoop Java execution showing method flow using DTrace.
14 * This watches Java method entries and returns, and indents child
15 * method calls.
21 * CLASS.METHOD Java class and method name
24 * -> method entry
25 * <- method return
63 hotspot*:::method-entry
67 this->method = (char *)copyin(arg3, arg4 + 1);
68 this->method[arg4] = '\0';
72 stringof(this->method));
[all...]
H A Dj_methodcalls.d3 * j_methodcalls.d - count Java method calls DTrace.
17 * CLASS.METHOD Java class and method name
45 hotspot*:::method-entry
49 this->method = (char *)copyin(arg3, arg4 + 1);
50 this->method[arg4] = '\0';
52 stringof(this->method));
H A Dj_syscalls.d16 * TYPE Type of call (method/syscall)
46 hotspot$target:::method-entry
50 this->method = (char *)copyin(arg3, arg4 + 1);
51 this->method[arg4] = '\0';
53 stringof(this->method));
54 @calls[pid, "method", this->name] = count();
H A Dj_flowtime.d3 * j_flowtime.d - snoop Java execution with method flow and delta times.
14 * This watches Java method entries and returns, and indents child
15 * method calls.
23 * CLASS.METHOD Java class and method name
26 * -> method entry
27 * <- method return
66 hotspot*:::method-entry,
67 hotspot*:::method-return
73 hotspot*:::method-entry
78 this->method
[all...]
H A Dj_calls.d3 * j_calls.d - count Java calls (method/...) using DTrace.
23 * method method call
24 * mcompile method compile
25 * mload compiled method load
55 hotspot*:::method-entry
59 this->method = (char *)copyin(arg3, arg4 + 1);
60 this->method[arg4] = '\0';
62 stringof(this->method));
63 @calls[pid, "method", thi
[all...]
/freebsd-10.0-release/crypto/openssh/
H A Daudit.c49 audit_classify_auth(const char *method) argument
51 if (strcmp(method, "none") == 0)
53 else if (strcmp(method, "password") == 0)
55 else if (strcmp(method, "publickey") == 0 ||
56 strcmp(method, "rsa") == 0)
58 else if (strncmp(method, "keyboard-interactive", 20) == 0 ||
59 strcmp(method, "challenge-response") == 0)
61 else if (strcmp(method, "hostbased") == 0 ||
62 strcmp(method, "rhosts-rsa") == 0)
64 else if (strcmp(method, "gssap
[all...]
/freebsd-10.0-release/contrib/apr/poll/unix/
H A Dpollcb.c44 static apr_pollcb_provider_t *pollcb_provider(apr_pollset_method_e method) argument
47 switch (method) {
79 apr_pollset_method_e method)
90 * but someone might implement other pollcb method in
93 if (method == APR_POLLSET_DEFAULT) {
94 method = APR_POLLSET_POLL;
98 if (method == APR_POLLSET_DEFAULT)
99 method = pollset_default_method;
101 provider = pollcb_provider(method);
105 if (method
148 apr_pollset_method_e method = APR_POLLSET_DEFAULT; local
[all...]
/freebsd-10.0-release/crypto/openssl/crypto/x509v3/
H A Dv3_enum.c87 char *i2s_ASN1_ENUMERATED_TABLE(X509V3_EXT_METHOD *method, argument
93 for(enam = method->usr_data; enam->lname; enam++) {
96 return i2s_ASN1_ENUMERATED(method, e);
/freebsd-10.0-release/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>
[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>
[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>
[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>
[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>
[all...]
/freebsd-10.0-release/contrib/ofed/management/libibmad/src/
H A Dvendor.c52 response_expected(int method) argument
54 return method == IB_MAD_METHOD_GET ||
55 method == IB_MAD_METHOD_SET ||
56 method == IB_MAD_METHOD_TRAP;
73 resp_expected = response_expected(call->method);
77 rpc.method = call->method;
87 DEBUG("class 0x%x method 0x%x attr 0x%x mod 0x%x datasz %d off %d res_ex %d",
88 rpc.mgtclass, rpc.method, rpc.attr.id, rpc.attr.mod,
/freebsd-10.0-release/contrib/wpa/src/eap_peer/
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 void eap_peer_method_free(struct eap_method *method);
20 int eap_peer_method_register(struct eap_method *method);
69 int eap_peer_method_unload(struct eap_method *method);
78 static inline int eap_peer_method_unload(struct eap_method *method) argument
85 /* EAP peer method registration calls for statically linked in methods */
H A Deap_methods.c23 * eap_peer_get_eap_method - Get EAP method based on type number
25 * @method: EAP type number
26 * Returns: Pointer to EAP method or %NULL if not found
28 const struct eap_method * eap_peer_get_eap_method(int vendor, EapType method) argument
32 if (m->vendor == vendor && m->method == method)
40 * eap_peer_get_type - Get EAP type for the given EAP method name
41 * @name: EAP method name, e.g., TLS
43 * Returns: EAP method type or %EAP_TYPE_NONE if not found
54 return m->method;
231 eap_peer_method_unload(struct eap_method *method) argument
279 eap_peer_method_alloc(int version, int vendor, EapType method, const char *name) argument
298 eap_peer_method_free(struct eap_method *method) argument
313 eap_peer_method_register(struct eap_method *method) argument
[all...]

Completed in 163 milliseconds

1234567891011>>