Lines Matching refs:linep

40 	const char	*limit, *linep, *keyp;  in check_name()  local
43 linep = line; in check_name()
48 while (*keyp && linep < limit && !isspace(*linep) && *keyp == *linep) { in check_name()
50 linep++; in check_name()
52 if (*keyp == '\0' && linep < limit && isspace(*linep)) { in check_name()
60 while (linep < limit && !isspace(*linep)) in check_name()
61 linep++; in check_name()
63 while (linep < limit && isspace(*linep)) in check_name()
64 linep++; in check_name()
66 while (linep < limit && !isspace(*linep) && *linep != '/') in check_name()
67 linep++; in check_name()
68 if (linep == limit || *linep != '/') in check_name()
71 linep++; in check_name()
74 while (linep < limit && !isspace(*linep)) in check_name()
75 linep++; in check_name()
78 while (*keyp && linep < limit && !isspace(*linep) && in check_name()
79 *keyp == *linep) { in check_name()
81 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()
96 linep++; in check_name()
100 while (*keyp && linep < limit && !isspace(*linep) && in check_name()
101 *keyp == *linep) { in check_name()
103 linep++; in check_name()
105 if (*keyp == '\0' && (linep == limit || isspace(*linep))) in check_name()
109 while (linep < limit && !isspace(*linep)) in check_name()
110 linep++; in check_name()
129 const char *limit, *linep, *keyp, *numstart; in check_port() local
133 linep = line; in check_port()
137 while (linep < limit && !isspace(*linep)) in check_port()
138 linep++; in check_port()
140 while (linep < limit && isspace(*linep)) in check_port()
141 linep++; in check_port()
144 numstart = linep; in check_port()
145 while (linep < limit && !isspace(*linep) && *linep != '/') in check_port()
146 linep++; in check_port()
147 if (linep == limit || *linep != '/') in check_port()
149 numlen = linep - numstart; in check_port()
164 linep++; in check_port()
165 while (*keyp && linep < limit && !isspace(*linep) && *keyp == *linep) { in check_port()
167 linep++; in check_port()
169 return (*keyp == '\0' && (linep == limit || isspace(*linep))); in check_port()