Home
last modified time | relevance | path

Searched refs:tok_start (Results 1 – 3 of 3) sorted by relevance

/third_party/curl/lib/
Durl.c2263 size_t tok_start; local
2287 for(tok_start = 0; tok_start < no_proxy_len; tok_start = tok_end + 1) {
2288 while(tok_start < no_proxy_len &&
2289 strchr(separator, no_proxy[tok_start]) != NULL) {
2291 ++tok_start;
2294 if(tok_start == no_proxy_len)
2297 for(tok_end = tok_start; tok_end < no_proxy_len &&
2306 if(no_proxy[tok_start] == '.')
2307 ++tok_start;
2309 if((tok_end - tok_start) <= namelen) {
[all …]
/third_party/wpa_supplicant/wpa_supplicant-2.9/hostapd/
Dap_config_file.c3894 char *tok_start, *tok_prev; local
3911 tok_start = os_strchr(tok_prev, ',');
3912 if (tok_start) {
3913 domain_len = tok_start - tok_prev;
3917 tok_prev = ++tok_start;
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/hostapd/
Dap_config_file.c4000 char *tok_start, *tok_prev; in hostapd_config_fill() local
4017 tok_start = os_strchr(tok_prev, ','); in hostapd_config_fill()
4018 if (tok_start) { in hostapd_config_fill()
4019 domain_len = tok_start - tok_prev; in hostapd_config_fill()
4023 tok_prev = ++tok_start; in hostapd_config_fill()