Lines Matching refs:sb
584 __gl_stat_t sb; in glob2() local
602 if (g_lstat(pathbuf, &sb, pglob)) in glob2()
613 pathend[-1] != SEP) && (S_ISDIR(sb.st_mode) || in glob2()
616 (g_stat(pathbuf, &sb, pglob) == 0) && in glob2()
617 S_ISDIR(sb.st_mode)))) { in glob2()
962 g_lstat(Char *fn, __gl_stat_t *sb, glob_t *pglob) in g_lstat() argument
967 _DIAGASSERT(sb != NULL); in g_lstat()
973 return (*pglob->gl_lstat)(buf, sb); in g_lstat()
974 return lstat(buf, sb); in g_lstat()
978 g_stat(Char *fn, __gl_stat_t *sb, glob_t *pglob) in g_stat() argument
983 _DIAGASSERT(sb != NULL); in g_stat()
989 return (*pglob->gl_stat)(buf, sb); in g_stat()
990 return stat(buf, sb); in g_stat()