Lines Matching refs:linep

71 	const char	*limit, *linep, *keyp;  in check_name2()  local
74 linep = (const char *)argp->buf.buffer; in check_name2()
75 limit = linep + strlen(argp->buf.buffer); in check_name2()
79 while (*keyp && linep < limit && !isspace(*linep) && *keyp == *linep) { in check_name2()
81 linep++; in check_name2()
83 if (*keyp == '\0' && linep < limit && isspace(*linep)) { in check_name2()
91 while (linep < limit && !isspace(*linep)) in check_name2()
92 linep++; in check_name2()
94 while (linep < limit && isspace(*linep)) in check_name2()
95 linep++; in check_name2()
97 while (linep < limit && !isspace(*linep) && *linep != '/') in check_name2()
98 linep++; in check_name2()
99 if (linep == limit || *linep != '/') in check_name2()
102 linep++; in check_name2()
105 while (linep < limit && !isspace(*linep)) in check_name2()
106 linep++; in check_name2()
109 while (*keyp && linep < limit && !isspace(*linep) && in check_name2()
110 *keyp == *linep) { in check_name2()
112 linep++; in check_name2()
115 if (*keyp || (linep < limit && !isspace(*linep))) in check_name2()
124 while (linep < limit) { in check_name2()
126 while (linep < limit && isspace(*linep)) in check_name2()
127 linep++; in check_name2()
131 while (*keyp && linep < limit && !isspace(*linep) && in check_name2()
132 *keyp == *linep) { in check_name2()
134 linep++; in check_name2()
136 if (*keyp == '\0' && (linep == limit || isspace(*linep))) in check_name2()
140 while (linep < limit && !isspace(*linep)) in check_name2()
141 linep++; in check_name2()
225 const char *limit, *linep, *keyp, *numstart; in check_port2() local
229 linep = (const char *)argp->buf.buffer; in check_port2()
230 limit = linep + strlen(argp->buf.buffer); in check_port2()
233 while (linep < limit && !isspace(*linep)) in check_port2()
234 linep++; in check_port2()
236 while (linep < limit && isspace(*linep)) in check_port2()
237 linep++; in check_port2()
240 numstart = linep; in check_port2()
241 while (linep < limit && !isspace(*linep) && *linep != '/') in check_port2()
242 linep++; in check_port2()
243 if (linep == limit || *linep != '/') in check_port2()
245 numlen = linep - numstart; in check_port2()
260 linep++; in check_port2()
261 while (*keyp && linep < limit && !isspace(*linep) && *keyp == *linep) { in check_port2()
263 linep++; in check_port2()
265 return (*keyp == '\0' && (linep == limit || isspace(*linep))); in check_port2()