OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:num_methods
(Results
1 - 6
of
6
) sorted by null
/external/chromium/net/tools/flip_server/
spdy_ssl.cc
82
int
num_methods
= sk_SSL_COMP_num(ssl_comp_methods);
local
84
for (i = 0; i <
num_methods
; i++) {
/external/wpa_supplicant_6/wpa_supplicant/src/eap_peer/
eap_tls_common.c
965
size_t
num_methods
= 0, prefix_len;
local
995
num_methods
++;
997
num_methods
* sizeof(*methods));
1004
methods[
num_methods
- 1].vendor = vendor;
1005
methods[
num_methods
- 1].method = method;
1015
methods = eap_get_phase2_types(config, &
num_methods
);
1023
num_methods
* sizeof(struct eap_method_type));
1026
*num_types =
num_methods
;
/external/wpa_supplicant_8/src/eap_peer/
eap_tls_common.c
915
size_t
num_methods
= 0, prefix_len;
local
945
num_methods
++;
947
num_methods
* sizeof(*methods));
954
methods[
num_methods
- 1].vendor = vendor;
955
methods[
num_methods
- 1].method = method;
965
methods = eap_get_phase2_types(config, &
num_methods
);
973
num_methods
* sizeof(struct eap_method_type));
976
*num_types =
num_methods
;
/external/wpa_supplicant_8/hostapd/
config_file.c
197
int line = 0, ret = 0,
num_methods
;
local
288
num_methods
= 0;
294
user->methods[
num_methods
].method =
297
&user->methods[
num_methods
].vendor);
298
if (user->methods[
num_methods
].vendor ==
300
user->methods[
num_methods
].method == EAP_TYPE_NONE)
326
num_methods
++;
327
if (
num_methods
>= EAP_MAX_METHODS)
334
if (
num_methods
== 0 && user->ttls_auth == 0) {
[
all
...]
/external/wpa_supplicant_6/wpa_supplicant/
config.c
948
size_t
num_methods
= 0;
local
967
(
num_methods
+ 1) * sizeof(*methods));
973
methods[
num_methods
].method = eap_peer_get_type(
974
start, &methods[
num_methods
].vendor);
975
if (methods[
num_methods
].vendor == EAP_VENDOR_IETF &&
976
methods[
num_methods
].method == EAP_TYPE_NONE) {
984
} else if (methods[
num_methods
].vendor == EAP_VENDOR_IETF &&
985
methods[
num_methods
].method == EAP_TYPE_LEAP)
989
num_methods
++;
997
methods = os_realloc(methods, (
num_methods
+ 1) * sizeof(*methods))
[
all
...]
/external/wpa_supplicant_8/wpa_supplicant/
config.c
1073
size_t
num_methods
= 0;
local
1092
(
num_methods
+ 1) * sizeof(*methods));
1098
methods[
num_methods
].method = eap_peer_get_type(
1099
start, &methods[
num_methods
].vendor);
1100
if (methods[
num_methods
].vendor == EAP_VENDOR_IETF &&
1101
methods[
num_methods
].method == EAP_TYPE_NONE) {
1109
} else if (methods[
num_methods
].vendor == EAP_VENDOR_IETF &&
1110
methods[
num_methods
].method == EAP_TYPE_LEAP)
1114
num_methods
++;
1122
methods = os_realloc(methods, (
num_methods
+ 1) * sizeof(*methods))
[
all
...]
Completed in 78 milliseconds