Lines Matching refs:limit
73 const char *limit, *linep, *keyp; in check_name2() local
77 limit = linep + strlen(argp->buf.buffer); in check_name2()
81 while (*keyp && linep < limit && !isspace(*linep) && *keyp == *linep) { in check_name2()
85 if (*keyp == '\0' && linep < limit && isspace(*linep)) { in check_name2()
93 while (linep < limit && !isspace(*linep)) in check_name2()
96 while (linep < limit && isspace(*linep)) in check_name2()
99 while (linep < limit && !isspace(*linep) && *linep != '/') in check_name2()
101 if (linep == limit || *linep != '/') in check_name2()
107 while (linep < limit && !isspace(*linep)) in check_name2()
111 while (*keyp && linep < limit && !isspace(*linep) && in check_name2()
117 if (*keyp || (linep < limit && !isspace(*linep))) in check_name2()
126 while (linep < limit) { in check_name2()
128 while (linep < limit && isspace(*linep)) in check_name2()
133 while (*keyp && linep < limit && !isspace(*linep) && in check_name2()
138 if (*keyp == '\0' && (linep == limit || isspace(*linep))) in check_name2()
142 while (linep < limit && !isspace(*linep)) in check_name2()
227 const char *limit, *linep, *keyp, *numstart; in check_port2() local
232 limit = linep + strlen(argp->buf.buffer); in check_port2()
235 while (linep < limit && !isspace(*linep)) in check_port2()
238 while (linep < limit && isspace(*linep)) in check_port2()
243 while (linep < limit && !isspace(*linep) && *linep != '/') in check_port2()
245 if (linep == limit || *linep != '/') in check_port2()
263 while (*keyp && linep < limit && !isspace(*linep) && *keyp == *linep) { in check_port2()
267 return (*keyp == '\0' && (linep == limit || isspace(*linep))); in check_port2()