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

1234567891011>>

/freebsd-9.3-release/contrib/wpa/src/eap_server/
H A Deap_server_methods.c2 * EAP server method registration
26 * eap_server_get_eap_method - Get EAP method based on type number
28 * @method: EAP type number
29 * Returns: Pointer to EAP method or %NULL if not found
31 const struct eap_method * eap_server_get_eap_method(int vendor, EapType method) argument
35 if (m->vendor == vendor && m->method == method)
43 * eap_server_get_type - Get EAP type for the given EAP method name
44 * @name: EAP method name, e.g., TLS
46 * Returns: EAP method typ
77 eap_server_method_alloc(int version, int vendor, EapType method, const char *name) argument
96 eap_server_method_free(struct eap_method *method) argument
111 eap_server_method_register(struct eap_method *method) argument
[all...]
H A Deap_methods.h2 * EAP server method registration
21 EapType method);
23 EapType method, const char *name);
24 void eap_server_method_free(struct eap_method *method);
25 int eap_server_method_register(struct eap_method *method);
31 /* EAP server method registration calls for statically linked in methods */
/freebsd-9.3-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-9.3-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-9.3-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-9.3-release/crypto/openssl/crypto/x509v3/
H A Dv3_enum.c85 char *i2s_ASN1_ENUMERATED_TABLE(X509V3_EXT_METHOD *method, ASN1_ENUMERATED *e) argument
90 for (enam = method->usr_data; enam->lname; enam++) {
94 return i2s_ASN1_ENUMERATED(method, e);
/freebsd-9.3-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-9.3-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-9.3-release/contrib/wpa/src/eap_peer/
H A Deap_methods.h20 const struct eap_method * eap_peer_get_eap_method(int vendor, EapType method);
24 EapType method, const char *name);
25 void eap_peer_method_free(struct eap_method *method);
26 int eap_peer_method_register(struct eap_method *method);
75 int eap_peer_method_unload(struct eap_method *method);
84 static inline int eap_peer_method_unload(struct eap_method *method) argument
91 /* EAP peer method registration calls for statically linked in methods */
H A Deap_methods.c29 * eap_peer_get_eap_method - Get EAP method based on type number
31 * @method: EAP type number
32 * Returns: Pointer to EAP method or %NULL if not found
34 const struct eap_method * eap_peer_get_eap_method(int vendor, EapType method) argument
38 if (m->vendor == vendor && m->method == method)
46 * eap_peer_get_type - Get EAP type for the given EAP method name
47 * @name: EAP method name, e.g., TLS
49 * Returns: EAP method type or %EAP_TYPE_NONE if not found
60 return m->method;
235 eap_peer_method_unload(struct eap_method *method) argument
283 eap_peer_method_alloc(int version, int vendor, EapType method, const char *name) argument
302 eap_peer_method_free(struct eap_method *method) argument
317 eap_peer_method_register(struct eap_method *method) argument
[all...]
/freebsd-9.3-release/crypto/openssl/crypto/bio/
H A Dbio_cb.c83 BIO_snprintf(p, p_maxlen, "Free - %s\n", bio->method->name);
86 if (bio->method->type & BIO_TYPE_DESCRIPTOR)
88 bio->num, argi, bio->method->name, bio->num);
91 bio->num, argi, bio->method->name);
94 if (bio->method->type & BIO_TYPE_DESCRIPTOR)
96 bio->num, argi, bio->method->name, bio->num);
99 bio->num, argi, bio->method->name);
102 BIO_snprintf(p, p_maxlen, "puts() - %s\n", bio->method->name);
105 BIO_snprintf(p, p_maxlen, "gets(%d) - %s\n", argi, bio->method->name);
108 BIO_snprintf(p, p_maxlen, "ctrl(%d) - %s\n", argi, bio->method
[all...]

Completed in 505 milliseconds

1234567891011>>