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
956
size_t
num_methods
= 0, prefix_len;
local
986
num_methods
++;
987
_methods = os_realloc_array(methods,
num_methods
,
995
methods[
num_methods
- 1].vendor = vendor;
996
methods[
num_methods
- 1].method = method;
1006
methods = eap_get_phase2_types(config, &
num_methods
);
1014
num_methods
* sizeof(struct eap_method_type));
1017
*num_types =
num_methods
;
/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/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_8/wpa_supplicant/
config.c
1045
size_t
num_methods
= 0;
local
1063
methods = os_realloc_array(methods,
num_methods
+ 1,
1070
methods[
num_methods
].method = eap_peer_get_type(
1071
start, &methods[
num_methods
].vendor);
1072
if (methods[
num_methods
].vendor == EAP_VENDOR_IETF &&
1073
methods[
num_methods
].method == EAP_TYPE_NONE) {
1081
} else if (methods[
num_methods
].vendor == EAP_VENDOR_IETF &&
1082
methods[
num_methods
].method == EAP_TYPE_LEAP)
1086
num_methods
++;
1094
methods = os_realloc_array(methods,
num_methods
+ 1, sizeof(*methods))
[
all
...]
Completed in 441 milliseconds