HomeSort by: relevance | last modified time | path
    Searched defs:stb (Results 1 - 25 of 81) sorted by relevancy

1 2 3 4

  /src/lib/libc/gen/
scandir.c 65 struct stat stb; local in function:dirsize
68 if (fstat(fd, &stb) == -1)
74 nlen = (size_t)(stb.st_size / _DIRENT_MINSIZE((struct dirent *)0));
81 nlen = (size_t)(stb.st_size ? stb.st_size : 10);
scandir.c 65 struct stat stb; local in function:dirsize
68 if (fstat(fd, &stb) == -1)
74 nlen = (size_t)(stb.st_size / _DIRENT_MINSIZE((struct dirent *)0));
81 nlen = (size_t)(stb.st_size ? stb.st_size : 10);
scandir.c 65 struct stat stb; local in function:dirsize
68 if (fstat(fd, &stb) == -1)
74 nlen = (size_t)(stb.st_size / _DIRENT_MINSIZE((struct dirent *)0));
81 nlen = (size_t)(stb.st_size ? stb.st_size : 10);
  /src/usr.sbin/videomode/
videomode.c 93 struct stat stb; local in function:get_grf
98 if (fstat(0, &stb) == -1)
100 if (!S_ISCHR(stb.st_mode) || !isatty(0))
102 if (major(stb.st_rdev) != 13)
105 (u_int)minor(stb.st_rdev) & 0x7);
videomode.c 93 struct stat stb; local in function:get_grf
98 if (fstat(0, &stb) == -1)
100 if (!S_ISCHR(stb.st_mode) || !isatty(0))
102 if (major(stb.st_rdev) != 13)
105 (u_int)minor(stb.st_rdev) & 0x7);
videomode.c 93 struct stat stb; local in function:get_grf
98 if (fstat(0, &stb) == -1)
100 if (!S_ISCHR(stb.st_mode) || !isatty(0))
102 if (major(stb.st_rdev) != 13)
105 (u_int)minor(stb.st_rdev) & 0x7);
  /src/bin/rcp/
util.c 90 struct stat stb; local in function:verifydir
92 if (!stat(cp, &stb)) {
93 if (S_ISDIR(stb.st_mode))
151 struct stat stb; local in function:allocbuf
155 if (fstat(fd, &stb) < 0) {
159 size = roundup(stb.st_blksize, blksize);
util.c 90 struct stat stb; local in function:verifydir
92 if (!stat(cp, &stb)) {
93 if (S_ISDIR(stb.st_mode))
151 struct stat stb; local in function:allocbuf
155 if (fstat(fd, &stb) < 0) {
159 size = roundup(stb.st_blksize, blksize);
util.c 90 struct stat stb; local in function:verifydir
92 if (!stat(cp, &stb)) {
93 if (S_ISDIR(stb.st_mode))
151 struct stat stb; local in function:allocbuf
155 if (fstat(fd, &stb) < 0) {
159 size = roundup(stb.st_blksize, blksize);
  /src/sys/arch/atari/stand/libsa/
diskio.c 96 daddr_t stb = dd->rst + dblk; local in function:rootstrategy
99 if ((flag == F_READ) && !(size & 511) && (stb + nb <= dd->rend)) {
100 if (!dd->rds(buf, stb, nb)) {
diskio.c 96 daddr_t stb = dd->rst + dblk; local in function:rootstrategy
99 if ((flag == F_READ) && !(size & 511) && (stb + nb <= dd->rend)) {
100 if (!dd->rds(buf, stb, nb)) {
diskio.c 96 daddr_t stb = dd->rst + dblk; local in function:rootstrategy
99 if ((flag == F_READ) && !(size & 511) && (stb + nb <= dd->rend)) {
100 if (!dd->rds(buf, stb, nb)) {
  /src/usr.bin/ftp/
ruserpass.c 103 struct stat stb; local in function:ruserpass
160 fstat(fileno(cfile), &stb) >= 0 &&
161 (stb.st_mode & 077) != 0) {
172 if (fstat(fileno(cfile), &stb) >= 0
173 && (stb.st_mode & 077) != 0) {
ruserpass.c 103 struct stat stb; local in function:ruserpass
160 fstat(fileno(cfile), &stb) >= 0 &&
161 (stb.st_mode & 077) != 0) {
172 if (fstat(fileno(cfile), &stb) >= 0
173 && (stb.st_mode & 077) != 0) {
ruserpass.c 103 struct stat stb; local in function:ruserpass
160 fstat(fileno(cfile), &stb) >= 0 &&
161 (stb.st_mode & 077) != 0) {
172 if (fstat(fileno(cfile), &stb) >= 0
173 && (stb.st_mode & 077) != 0) {
  /src/bin/csh/
sem.c 638 struct stat stb; local in function:chkclob
640 if (stat(cp, &stb) < 0)
642 if (S_ISCHR(stb.st_mode))
sem.c 638 struct stat stb; local in function:chkclob
640 if (stat(cp, &stb) < 0)
642 if (S_ISCHR(stb.st_mode))
sem.c 638 struct stat stb; local in function:chkclob
640 if (stat(cp, &stb) < 0)
642 if (S_ISCHR(stb.st_mode))
  /src/usr.bin/last/
want.c 72 struct stat stb; /* stat of file for sz */ local in function:wtmp
129 if (fstat(wfd, &stb) == -1)
131 if (!S_ISREG(stb.st_mode))
134 seentime = stb.st_mtime;
138 offset = stb.st_size;
want.c 72 struct stat stb; /* stat of file for sz */ local in function:wtmp
129 if (fstat(wfd, &stb) == -1)
131 if (!S_ISREG(stb.st_mode))
134 seentime = stb.st_mtime;
138 offset = stb.st_size;
want.c 72 struct stat stb; /* stat of file for sz */ local in function:wtmp
129 if (fstat(wfd, &stb) == -1)
131 if (!S_ISREG(stb.st_mode))
134 seentime = stb.st_mtime;
138 offset = stb.st_size;
  /src/usr.sbin/lpr/lpd/
recvjob.c 88 struct stat stb; local in function:recvjob
105 if (stat(LO, &stb) == 0) {
106 if (stb.st_mode & 010) {
111 } else if (stat(SD, &stb) < 0)
recvjob.c 88 struct stat stb; local in function:recvjob
105 if (stat(LO, &stb) == 0) {
106 if (stb.st_mode & 010) {
111 } else if (stat(SD, &stb) < 0)
  /src/lib/libcompat/4.3/
ruserpass.c 101 struct stat stb; local in function:ruserpass
171 fstat(fileno(cfile), &stb) >= 0 &&
172 (stb.st_mode & 077) != 0) {
184 if (fstat(fileno(cfile), &stb) >= 0
185 && (stb.st_mode & 077) != 0) {
ruserpass.c 101 struct stat stb; local in function:ruserpass
171 fstat(fileno(cfile), &stb) >= 0 &&
172 (stb.st_mode & 077) != 0) {
184 if (fstat(fileno(cfile), &stb) >= 0
185 && (stb.st_mode & 077) != 0) {

Completed in 68 milliseconds

1 2 3 4