Searched refs:stbuf (Results 26 - 41 of 41) sorted by relevance

12

/freebsd-current/contrib/ntp/util/
H A Dtickadj.c751 struct stat stbuf; local
753 if (stat(*kname, &stbuf) == -1)
/freebsd-current/contrib/sendmail/src/
H A Dcollect.c201 struct stat stbuf; local
224 if (dfd < 0 || fstat(dfd, &stbuf) < 0)
228 e->e_dfdev = stbuf.st_dev;
229 e->e_dfino = stbuf.st_ino;
H A Dmain.c1969 struct stat stbuf; local
1972 if (stat(".", &stbuf) < 0)
1974 if (stbuf.st_uid != RealUid)
4053 struct stat stbuf; local
4055 if (fstat(fd, &stbuf) >= 0 || errno != EBADF)
H A Dutil.c1859 struct stat stbuf; local
1861 if (fstat(fd, &stbuf) < 0 && errno != EOPNOTSUPP)
H A Dmap.c114 struct stat stbuf; local
131 if (fd < 0 || fstat(fd, &stbuf) < 0 || stbuf.st_mtime > map->map_mtime)
139 (nstbuf.st_dev != stbuf.st_dev || nstbuf.st_ino != stbuf.st_ino))
143 fn, (int) nstbuf.st_dev, (int) stbuf.st_dev,
144 (int) nstbuf.st_ino, (int) stbuf.st_ino);
H A Dqueue.c553 struct stat stbuf; local
570 if (fstat(dfd, &stbuf) < 0)
574 e->e_dfdev = stbuf.st_dev;
575 e->e_dfino = ST_INODE(stbuf);
H A Ddeliver.c5836 struct stat stbuf; local
5838 if (fstat(sm_io_getinfo(e->e_dfp, SM_IO_WHAT_FD, NULL), &stbuf)
5843 e->e_dfdev = stbuf.st_dev;
5844 e->e_dfino = stbuf.st_ino;
H A Dconf.c1257 struct stat stbuf; local
1271 if (stat(pathn, &stbuf) < 0 || !bitset(S_IWOTH, stbuf.st_mode))
/freebsd-current/contrib/tnftp/src/
H A Dcmds.c611 struct stat stbuf; local
619 ret = stat(locfile, &stbuf);
625 restart_point = stbuf.st_size;
633 if (stbuf.st_mtime >= mtime) {
730 struct stat stbuf; local
732 if (stat(tp, &stbuf) == 0)
733 restart_point = stbuf.st_size;
/freebsd-current/crypto/heimdal/appl/ftp/ftp/
H A Dcmds.c646 struct stat stbuf; local
649 ret = stat(argv[2], &stbuf);
655 restart_point = stbuf.st_size;
661 time_t mtime = stbuf.st_mtime;
/freebsd-current/contrib/tcsh/
H A Dsh.sem.c127 struct stat stbuf; local
160 ((stat(pathname, &stbuf) != -1 && S_ISDIR(stbuf.st_mode))
/freebsd-current/sbin/camcontrol/
H A Dfwdownload.c574 struct stat stbuf; local
583 if (fstat(fd, &stbuf) < 0) {
587 if ((img_size = stbuf.st_size) == 0) {
/freebsd-current/usr.sbin/makefs/
H A Dcd9660.c2048 struct stat stbuf; local
2060 if (lstat(diskStructure->generic_bootimage, &stbuf) == -1)
2064 if (stbuf.st_size > 32768) {
2071 (long long)stbuf.st_size);
/freebsd-current/sys/contrib/openzfs/etc/systemd/system-generators/
H A Dzfs-mount-generator.c572 struct stat stbuf; local
573 bool already_exists = fstatat(destdir_fd, mountfile, &stbuf, 0) == 0;
/freebsd-current/lib/libpmc/pmu-events/
H A Djevents.c1240 struct stat stbuf; local
1265 if (stat(ldirname, &stbuf) < 0) {
/freebsd-current/lib/libprocstat/
H A Dlibprocstat.c1377 struct statfs stbuf; local
1426 statfs(path, &stbuf);
1427 vn->vn_mntdir = strdup(stbuf.f_mntonname);

Completed in 421 milliseconds

12