Searched refs:stat (Results 1 - 25 of 1927) sorted by relevance

1234567891011>>

/freebsd-9.3-release/usr.bin/stat/
H A DMakefile3 PROG= stat
5 LINKS= ${BINDIR}/stat ${BINDIR}/readlink
6 MLINKS= stat.1 readlink.1
/freebsd-9.3-release/crypto/heimdal/lib/roken/
H A Dlstat.c42 lstat(const char *path, struct stat *buf)
44 return stat(path, buf);
/freebsd-9.3-release/bin/cp/
H A Dextern.h44 int copy_fifo(struct stat *, int);
47 int copy_special(struct stat *, int);
48 int setfile(struct stat *, int);
49 int preserve_dir_acls(struct stat *, char *, char *);
/freebsd-9.3-release/contrib/bind9/lib/isc/unix/include/isc/
H A Dstat.h17 /* $Id: stat.h,v 1.5 2007/06/19 23:47:19 tbox Exp $ */
50 #include <sys/stat.h>
/freebsd-9.3-release/contrib/ntp/lib/isc/unix/include/isc/
H A Dstat.h17 /* $Id: stat.h,v 1.5 2007/06/19 23:47:19 tbox Exp $ */
50 #include <sys/stat.h>
/freebsd-9.3-release/share/examples/kld/syscall/test/
H A Dcall.c41 struct module_stat stat; local
43 stat.version = sizeof(stat);
44 modstat(modfind("sys/syscall"), &stat);
45 syscall_num = stat.data.intval;
/freebsd-9.3-release/contrib/binutils/libiberty/
H A Dfdmatch.c50 #include <sys/stat.h>
54 struct stat sbuf1;
55 struct stat sbuf2;
H A Dunlink-if-ordinary.c48 #include <sys/stat.h>
58 #define lstat stat
65 struct stat st;
/freebsd-9.3-release/contrib/gcclibs/libiberty/
H A Dfdmatch.c50 #include <sys/stat.h>
54 struct stat sbuf1;
55 struct stat sbuf2;
H A Dunlink-if-ordinary.c48 #include <sys/stat.h>
58 #define lstat stat
65 struct stat st;
/freebsd-9.3-release/contrib/libarchive/cpio/test/
H A Dtest_option_B_upper.c31 struct stat st;
43 assertEqualInt(0, stat("small.cpio", &st));
50 assertEqualInt(0, stat("large.cpio", &st));
H A Dtest_0.c40 struct stat st;
43 if (!assertEqualInt(0, stat(testprogfile, &st)))
/freebsd-9.3-release/gnu/usr.bin/grep/
H A Disdir.c23 #include <sys/stat.h>
39 struct stat stats;
41 return stat (path, &stats) == 0 && S_ISDIR (stats.st_mode);
/freebsd-9.3-release/tools/regression/security/cap_test/
H A Dcap_test_pdfork.c45 #include <sys/stat.h>
61 struct stat stat; local
89 REQUIRE(fstat(pd, &stat));
94 CHECK(now >= stat.st_birthtime);
95 CHECK((now - stat.st_birthtime) < 2);
96 CHECK(stat.st_birthtime == stat.st_atime);
97 CHECK(stat.st_atime == stat
[all...]
/freebsd-9.3-release/sbin/kldstat/
H A Dkldstat.c44 struct module_stat stat; local
46 stat.version = sizeof(struct module_stat);
47 if (modstat(modid, &stat) < 0)
48 warn("can't stat module id %d", modid);
50 printf("\t\t%2d %s\n", stat.id, stat.name);
56 struct kld_file_stat stat; local
59 stat.version = sizeof(struct kld_file_stat);
60 if (kldstat(fileid, &stat) < 0)
61 err(1, "can't stat fil
127 struct module_stat stat; local
[all...]
/freebsd-9.3-release/tools/tools/iwi/
H A Diwistats.c114 const struct statistic *stat; local
127 for (stat = tbl; stat->index != -1; stat++)
128 (void)printf("%-60s[%u]\n", stat->desc, stats[stat->index]);
/freebsd-9.3-release/crypto/openssh/
H A Dsftp-common.h45 void stat_to_attrib(const struct stat *, Attrib *);
46 void attrib_to_stat(const Attrib *, struct stat *);
49 char *ls_file(const char *, const struct stat *, int, int);
/freebsd-9.3-release/include/
H A Dftw.h29 #include <sys/stat.h>
39 #define FTW_NS 4 /* Unknown type; stat() failed. */
57 int ftw(const char *, int (*)(const char *, const struct stat *, int), int);
58 int nftw(const char *, int (*)(const char *, const struct stat *, int,
/freebsd-9.3-release/lib/libc/gen/
H A Dftok.c32 #include <sys/stat.h>
40 struct stat st;
42 if (stat(path, &st) < 0)
/freebsd-9.3-release/sys/cddl/compat/opensolaris/sys/
H A Dstat.h33 #include_next <sys/stat.h>
35 #define stat64 stat
43 fstat64(int fd, struct stat *sb)
/freebsd-9.3-release/tools/regression/pjdfstest/tests/link/
H A D12.t27 expect 1 stat ${n0} nlink
29 expect 2 stat ${n0} nlink
31 expect 1 stat ${n0} nlink
37 expect 1 stat ${n0} nlink
41 expect 2 stat ${n0} nlink
43 expect 1 stat ${n0} nlink
47 expect 2 stat ${n0} nlink
50 expect 1 stat ${n0} nlink
56 expect 2 stat ${n0} nlink
59 expect 1 stat
[all...]
/freebsd-9.3-release/contrib/libarchive/tar/test/
H A Dtest_0.c40 struct stat st;
43 if (!assertEqualInt(0, stat(testprogfile, &st)))
/freebsd-9.3-release/crypto/heimdal/appl/ftp/common/
H A Dcommon.h52 #include <sys/stat.h>
58 void *alloc_buffer (void *oldbuf, size_t *sz, struct stat *st);
/freebsd-9.3-release/lib/libc/stdio/
H A Dremove.c40 #include <sys/stat.h>
48 struct stat sb;
/freebsd-9.3-release/lib/libstand/
H A Dstat.c1 /* $NetBSD: stat.c,v 1.4 1996/01/13 22:25:43 leo Exp $ */
31 * @(#)stat.c 8.1 (Berkeley) 6/11/93
40 stat(str, sb) function
42 struct stat *sb;

Completed in 156 milliseconds

1234567891011>>