Home | History | Annotate | Download | only in openbsd-compat

Lines Matching defs:sb

630 	struct stat sb;
641 if (g_lstat(pathbuf, &sb, pglob))
653 pathend[-1] != SEP) && (S_ISDIR(sb.st_mode) ||
654 (S_ISLNK(sb.st_mode) &&
655 (g_stat(pathbuf, &sb, pglob) == 0) &&
656 S_ISDIR(sb.st_mode)))) {
663 return(globextend(pathbuf, pglob, limitp, &sb));
796 struct stat *sb)
852 if (sb == NULL)
864 memcpy(statv[pglob->gl_offs + pglob->gl_pathc], sb,
865 sizeof(*sb));
1001 g_lstat(Char *fn, struct stat *sb, glob_t *pglob)
1008 return((*pglob->gl_lstat)(buf, sb));
1009 return(lstat(buf, sb));
1013 g_stat(Char *fn, struct stat *sb, glob_t *pglob)
1020 return((*pglob->gl_stat)(buf, sb));
1021 return(stat(buf, sb));