Searched defs:stbuf2 (Results 1 - 5 of 5) sorted by relevance
/illumos-gate/usr/src/cmd/chgrp/ |
H A D | chgrp.c | 67 static struct stat stbuf2; variable in typeref:struct:stat 250 if (stat(argv[c], &stbuf2) < 0) { 263 if ((stbuf2.st_mode & S_IFMT) 273 stbuf2.st_dev, 274 stbuf2.st_ino) == 1) { 282 stbuf2.st_mode & 310 if ((stbuf2.st_mode & S_IFMT) 314 stbuf2.st_mode & ~S_IFMT);
|
/illumos-gate/usr/src/cmd/chown/ |
H A D | chown.c | 281 struct stat stbuf2; local 282 if (stat(argv[c], &stbuf2) < 0) { 295 if ((stbuf2.st_mode & S_IFMT) 305 stbuf2.st_dev, 306 stbuf2.st_ino) == 1) {
|
/illumos-gate/usr/src/cmd/cron/ |
H A D | atq.c | 461 struct stat stbuf1, stbuf2; local 476 if (stat((*d2)->d_name, &stbuf2) < 0) 479 if (stbuf1.st_ctime < stbuf2.st_ctime) 481 else if (stbuf1.st_ctime > stbuf2.st_ctime)
|
/illumos-gate/usr/src/cmd/logadm/ |
H A D | conf.c | 319 struct stat stbuf1, stbuf2, stbuf3; local 364 if (stat(Confname, &stbuf2) < 0 || 365 !(stbuf2.st_dev == stbuf1.st_dev && 366 stbuf2.st_ino == stbuf1.st_ino)) { 390 if (fstat(Timesfd, &stbuf2) < 0) 395 !(stbuf2.st_dev == stbuf3.st_dev && 396 stbuf2.st_ino == stbuf3.st_ino)) { 404 if (stbuf2.st_dev == stbuf1.st_dev && 405 stbuf2.st_ino == stbuf1.st_ino) 411 Timeslen = stbuf2 [all...] |
/illumos-gate/usr/src/cmd/cmd-inet/usr.sbin/in.routed/ |
H A D | trace.c | 275 struct stat stbuf2; local 366 if (fstat(nfd, &stbuf2) == -1 || !S_ISREG(stbuf2.st_mode) || 367 stbuf2.st_dev != stbuf.st_dev || stbuf2.st_ino != stbuf.st_ino) {
|
Completed in 65 milliseconds