Lines Matching defs:pos
673 const char *pos = *line;
677 while ((*pos != stop) && *pos) {
678 ++pos;
681 len = pos - *line;
685 while (*pos == stop) {
686 ++pos;
689 *line = pos;
701 const char *pos = *line;
705 while (!apr_isspace(*pos) && *pos) {
706 ++pos;
709 len = pos - *line;
712 while (apr_isspace(*pos)) {
713 ++pos;
716 *line = pos;
730 const char *pos = ap_strchr_c(*line, stop);
733 if (!pos) {
740 res = apr_pstrmemdup(atrans, *line, pos - *line);
742 ++pos;
744 *line = pos;
1212 unsigned char *pos;
1229 for (ptr = (const unsigned char *)tok_start, pos = (unsigned char *)token;
1235 *pos++ = *ptr;
1241 *pos++ = ' ';
1242 *pos++ = *ptr;
1248 *pos++ = ' ';
1249 *pos++ = *ptr;
1255 *pos++ = ' ';
1256 *pos++ = *ptr;
1261 *pos++ = *ptr;
1268 *pos++ = *ptr;
1276 *pos++ = *ptr;
1279 *pos++ = ' ';
1280 *pos++ = (in_com || in_qstr) ? *ptr
1287 *pos = '\0';
1306 const unsigned char *pos;
1354 for (pos = (const unsigned char *)tok;
1361 good = (*pos++ == *ptr);
1367 good = good && (*pos++ == ' ');
1368 good = good && (*pos++ == *ptr);
1374 good = good && (*pos++ == ' ');
1375 good = good && (*pos++ == *ptr);
1381 good = good && (*pos++ == ' ');
1382 good = good && (*pos++ == *ptr);
1387 good = good && (*pos++ == *ptr);
1394 good = (*pos++ == *ptr);
1402 good = good && (*pos++ == *ptr);
1407 good = (*pos++ == ' ');
1409 good = good && (*pos++ == *ptr);
1412 && (apr_tolower(*pos++) == apr_tolower(*ptr));
1418 if (good && *pos)