Lines Matching defs:tok_start
4715 size_t tok_start;
4736 for(tok_start = 0; tok_start < no_proxy_len; tok_start = tok_end + 1) {
4737 while(tok_start < no_proxy_len &&
4738 strchr(separator, no_proxy[tok_start]) != NULL) {
4740 ++tok_start;
4743 if(tok_start == no_proxy_len)
4746 for(tok_end = tok_start; tok_end < no_proxy_len &&
4755 if(no_proxy[tok_start] == '.')
4756 ++tok_start;
4758 if((tok_end - tok_start) <= namelen) {
4760 const char *checkn = name + namelen - (tok_end - tok_start);
4761 if(strncasecompare(no_proxy + tok_start, checkn,
4762 tok_end - tok_start)) {
4763 if((tok_end - tok_start) == namelen || *(checkn - 1) == '.') {
4770 } /* if((tok_end - tok_start) <= namelen) */
4771 } /* for(tok_start = 0; tok_start < no_proxy_len;
4772 tok_start = tok_end + 1) */