Lines Matching refs:limit

40 	const char	*limit, *linep, *keyp;  in check_name()  local
44 limit = line + linelen; in check_name()
48 while (*keyp && linep < limit && !isspace(*linep) && *keyp == *linep) { in check_name()
52 if (*keyp == '\0' && linep < limit && isspace(*linep)) { in check_name()
60 while (linep < limit && !isspace(*linep)) in check_name()
63 while (linep < limit && isspace(*linep)) in check_name()
66 while (linep < limit && !isspace(*linep) && *linep != '/') in check_name()
68 if (linep == limit || *linep != '/') in check_name()
74 while (linep < limit && !isspace(*linep)) in check_name()
78 while (*keyp && linep < limit && !isspace(*linep) && in check_name()
84 if (*keyp || (linep < limit && !isspace(*linep))) in check_name()
93 while (linep < limit) { in check_name()
95 while (linep < limit && isspace(*linep)) in check_name()
100 while (*keyp && linep < limit && !isspace(*linep) && in check_name()
105 if (*keyp == '\0' && (linep == limit || isspace(*linep))) in check_name()
109 while (linep < limit && !isspace(*linep)) in check_name()
129 const char *limit, *linep, *keyp, *numstart; in check_port() local
134 limit = line + linelen; in check_port()
137 while (linep < limit && !isspace(*linep)) in check_port()
140 while (linep < limit && isspace(*linep)) in check_port()
145 while (linep < limit && !isspace(*linep) && *linep != '/') in check_port()
147 if (linep == limit || *linep != '/') in check_port()
165 while (*keyp && linep < limit && !isspace(*linep) && *keyp == *linep) { in check_port()
169 return (*keyp == '\0' && (linep == limit || isspace(*linep))); in check_port()