Home | History | Annotate | Download | only in unistd

Lines Matching full:matchptr

281     const char *matchptr;
374 for (matchptr = pattern, matchlen = 0; 1; ++matchlen)
376 if ((*matchptr == '\0')
377 || (slash && ((*matchptr == '/')
378 || (escape && (*matchptr == '\\')
379 && (matchptr[1] == '/')))))
393 if (*matchptr == '*')
410 if (escape && (*matchptr == '\\') && matchptr[1]) {
411 matchptr += 2;
413 else if (*matchptr == '[') {
415 fnmatch_ch(&matchptr, &dummyptr, flags);
418 ++matchptr;