Lines Matching refs:isspace
50 while (*keyp && linep < limit && !isspace(*linep) && *keyp == *linep) { in check_name()
54 if (*keyp == '\0' && linep < limit && isspace(*linep)) { in check_name()
62 while (linep < limit && !isspace(*linep)) in check_name()
65 while (linep < limit && isspace(*linep)) in check_name()
68 while (linep < limit && !isspace(*linep) && *linep != '/') in check_name()
76 while (linep < limit && !isspace(*linep)) in check_name()
80 while (*keyp && linep < limit && !isspace(*linep) && in check_name()
86 if (*keyp || (linep < limit && !isspace(*linep))) in check_name()
97 while (linep < limit && isspace(*linep)) in check_name()
102 while (*keyp && linep < limit && !isspace(*linep) && in check_name()
107 if (*keyp == '\0' && (linep == limit || isspace(*linep))) in check_name()
111 while (linep < limit && !isspace(*linep)) in check_name()
139 while (linep < limit && !isspace(*linep)) in check_port()
142 while (linep < limit && isspace(*linep)) in check_port()
147 while (linep < limit && !isspace(*linep) && *linep != '/') in check_port()
167 while (*keyp && linep < limit && !isspace(*linep) && *keyp == *linep) { in check_port()
171 return (*keyp == '\0' && (linep == limit || isspace(*linep))); in check_port()