Lines Matching refs:linep
42 const char *limit, *linep, *keyp; in check_name() local
45 linep = line; in check_name()
50 while (*keyp && linep < limit && !isspace(*linep) && *keyp == *linep) { in check_name()
52 linep++; in check_name()
54 if (*keyp == '\0' && linep < limit && isspace(*linep)) { in check_name()
62 while (linep < limit && !isspace(*linep)) in check_name()
63 linep++; in check_name()
65 while (linep < limit && isspace(*linep)) in check_name()
66 linep++; in check_name()
68 while (linep < limit && !isspace(*linep) && *linep != '/') in check_name()
69 linep++; in check_name()
70 if (linep == limit || *linep != '/') in check_name()
73 linep++; in check_name()
76 while (linep < limit && !isspace(*linep)) in check_name()
77 linep++; in check_name()
80 while (*keyp && linep < limit && !isspace(*linep) && in check_name()
81 *keyp == *linep) { in check_name()
83 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()
98 linep++; in check_name()
102 while (*keyp && linep < limit && !isspace(*linep) && in check_name()
103 *keyp == *linep) { in check_name()
105 linep++; in check_name()
107 if (*keyp == '\0' && (linep == limit || isspace(*linep))) in check_name()
111 while (linep < limit && !isspace(*linep)) in check_name()
112 linep++; in check_name()
131 const char *limit, *linep, *keyp, *numstart; in check_port() local
135 linep = line; in check_port()
139 while (linep < limit && !isspace(*linep)) in check_port()
140 linep++; in check_port()
142 while (linep < limit && isspace(*linep)) in check_port()
143 linep++; in check_port()
146 numstart = linep; in check_port()
147 while (linep < limit && !isspace(*linep) && *linep != '/') in check_port()
148 linep++; in check_port()
149 if (linep == limit || *linep != '/') in check_port()
151 numlen = linep - numstart; in check_port()
166 linep++; in check_port()
167 while (*keyp && linep < limit && !isspace(*linep) && *keyp == *linep) { in check_port()
169 linep++; in check_port()
171 return (*keyp == '\0' && (linep == limit || isspace(*linep))); in check_port()