Lines Matching refs:limit
42 const char *limit, *linep, *keyp; in check_name() local
46 limit = line + linelen; in check_name()
50 while (*keyp && linep < limit && !isspace(*linep) && *keyp == *linep) { in check_name()
54 if (*keyp == '\0' && linep < limit && isspace(*linep)) { in check_name()
62 while (linep < limit && !isspace(*linep)) in check_name()
65 while (linep < limit && isspace(*linep)) in check_name()
68 while (linep < limit && !isspace(*linep) && *linep != '/') in check_name()
70 if (linep == limit || *linep != '/') in check_name()
76 while (linep < limit && !isspace(*linep)) in check_name()
80 while (*keyp && linep < limit && !isspace(*linep) && in check_name()
86 if (*keyp || (linep < limit && !isspace(*linep))) in check_name()
95 while (linep < limit) { in check_name()
97 while (linep < limit && isspace(*linep)) in check_name()
102 while (*keyp && linep < limit && !isspace(*linep) && in check_name()
107 if (*keyp == '\0' && (linep == limit || isspace(*linep))) in check_name()
111 while (linep < limit && !isspace(*linep)) in check_name()
131 const char *limit, *linep, *keyp, *numstart; in check_port() local
136 limit = line + linelen; in check_port()
139 while (linep < limit && !isspace(*linep)) in check_port()
142 while (linep < limit && isspace(*linep)) in check_port()
147 while (linep < limit && !isspace(*linep) && *linep != '/') in check_port()
149 if (linep == limit || *linep != '/') in check_port()
167 while (*keyp && linep < limit && !isspace(*linep) && *keyp == *linep) { in check_port()
171 return (*keyp == '\0' && (linep == limit || isspace(*linep))); in check_port()