Searched refs:S_IFDIR (Results 1 - 25 of 134) sorted by relevance

123456

/freebsd-9.3-release/gnu/usr.bin/grep/
H A Disdir.c29 #if !defined S_ISDIR && defined S_IFDIR
30 # define S_ISDIR(Mode) (((Mode) & S_IFMT) == S_IFDIR)
/freebsd-9.3-release/contrib/ntp/lib/isc/win32/include/isc/
H A Dstat.h43 #ifndef S_IFDIR
44 # define S_IFDIR _S_IFDIR macro
54 # define S_ISDIR(m) (((m) & S_IFMT) == S_IFDIR)
/freebsd-9.3-release/contrib/libreadline/
H A Dposixstat.h39 #if !defined (S_IFDIR) && !defined (S_ISDIR)
40 # define S_IFDIR 0040000 macro
41 #endif /* !S_IFDIR && !S_ISDIR */
60 #if defined (_S_IFDIR) && !defined (S_IFDIR)
61 #define S_IFDIR _S_IFDIR macro
87 #if defined (S_IFDIR) && !defined (S_ISDIR)
88 #define S_ISDIR(m) (((m)&S_IFMT) == S_IFDIR) /* directory */
H A Drldefs.h51 #if defined (S_IFDIR) && !defined (S_ISDIR)
52 # define S_ISDIR(m) (((m)&S_IFMT) == S_IFDIR)
/freebsd-9.3-release/contrib/texinfo/info/
H A Dfilesys.h88 #if !defined (S_ISDIR) && defined (S_IFDIR)
89 # define S_ISDIR(m) (((m) & S_IFMT) == S_IFDIR)
90 #endif /* !S_ISDIR && S_IFDIR */
/freebsd-9.3-release/gnu/lib/libodialog/
H A Ddir.c202 if ((s1->st_mode & S_IFDIR) && (s2->st_mode & S_IFDIR)) {
205 if (s1->st_mode & S_IFDIR) {
208 if (s2->st_mode & S_IFDIR) {
237 if ((s1->st_mode & S_IFDIR) && (s2->st_mode & S_IFDIR)) {
243 if (s1->st_mode & S_IFDIR) {
246 if (s2->st_mode & S_IFDIR) {
277 if ((s1->st_mode & S_IFDIR) && (s2->st_mode & S_IFDIR)) {
[all...]
/freebsd-9.3-release/contrib/ntp/sntp/libopts/compat/
H A Dwindows-config.h111 # define S_IFDIR _S_IFDIR macro
112 # define S_ISDIR(mode) (((mode) & S_IFDIR) == S_IFDIR)
/freebsd-9.3-release/contrib/libarchive/libarchive/test/
H A Dtest_write_format_mtree.c43 { "./subdir", S_IFDIR | 0755, 1233504586, 1001, 1001 },
46 { "./subdir2", S_IFDIR | 0755, 1233504586, 1001, 1001 },
47 { "./subdir3", S_IFDIR | 0755, 1233504586, 1001, 1001 },
81 if ((entries[i].mode & AE_IFMT) != S_IFDIR)
84 if ((entries[i].mode & AE_IFMT) != S_IFDIR)
126 if (dironly && (entries[i].mode & AE_IFMT) != S_IFDIR)
134 if ((entries[i].mode & AE_IFMT) != S_IFDIR)
H A Dtest_read_extract.c54 archive_entry_set_mode(ae, S_IFDIR | 0775);
72 archive_entry_set_mode(ae, S_IFDIR | 0777);
93 archive_entry_set_mode(ae, S_IFDIR | 0710);
100 archive_entry_set_mode(ae, S_IFDIR | 0711);
H A Dtest_tar_filenames.c84 archive_entry_set_mode(ae, S_IFDIR | 0755);
97 archive_entry_set_mode(ae, S_IFDIR | 0755);
141 assert((S_IFDIR | 0755) == archive_entry_mode(ae));
149 assert((S_IFDIR | 0755) == archive_entry_mode(ae));
H A Dtest_ustar_filenames.c86 archive_entry_set_mode(ae, S_IFDIR | 0755);
103 archive_entry_set_mode(ae, S_IFDIR | 0755);
145 assert((S_IFDIR | 0755) == archive_entry_mode(ae));
152 assert((S_IFDIR | 0755) == archive_entry_mode(ae));
H A Dtest_write_disk_secure.c53 archive_entry_set_mode(ae, S_IFDIR | 0777);
123 archive_entry_set_mode(ae, S_IFDIR | 0777);
145 archive_entry_set_mode(ae, S_IFDIR | 0777);
173 archive_entry_set_mode(ae, S_IFDIR | 0777);
H A Dtest_write_format_cpio.c96 archive_entry_set_mode(ae, S_IFDIR | 0755);
169 assertEqualInt((S_IFDIR | 0755), archive_entry_mode(ae));
/freebsd-9.3-release/contrib/gdb/gdb/
H A Dgdb_stat.h46 #if !defined(S_ISDIR) && defined(S_IFDIR)
47 #define S_ISDIR(m) (((m) & S_IFMT) == S_IFDIR)
/freebsd-9.3-release/contrib/cvs/lib/
H A Dmkdir.c98 if ((statbuf.st_mode & S_IFMT) != S_IFDIR)
H A Drename.c42 if ((from_stats.st_mode & S_IFMT) == S_IFDIR)
/freebsd-9.3-release/contrib/binutils/binutils/
H A Dfilemode.c136 #ifdef S_IFDIR
137 #define S_ISDIR(i) (((i) & S_IFMT) == S_IFDIR)
138 #else /* ! defined (S_IFDIR) */
140 #endif /* ! defined (S_IFDIR) */
/freebsd-9.3-release/contrib/diff/lib/
H A Dfile-type.h67 # ifdef S_IFDIR
68 # define S_ISDIR(m) (((m) & S_IFMT) == S_IFDIR)
/freebsd-9.3-release/contrib/bind9/lib/isc/unix/
H A Dfsaccess.c46 if ((statb.st_mode & S_IFDIR) != 0)
/freebsd-9.3-release/crypto/openssh/openbsd-compat/
H A Dstrmode.c47 case S_IFDIR: /* directory */
/freebsd-9.3-release/lib/libc/string/
H A Dstrmode.c45 case S_IFDIR: /* directory */
/freebsd-9.3-release/sbin/fsck_ffs/
H A Dutilities.c86 case S_IFDIR:
/freebsd-9.3-release/contrib/ntp/lib/isc/unix/
H A Dfsaccess.c46 if ((statb.st_mode & S_IFDIR) != 0)
/freebsd-9.3-release/contrib/amd/amd/
H A Damfs_toplvl.c184 } else if ((stb.st_mode & S_IFMT) != S_IFDIR) {
278 if ((stb.st_mode & S_IFMT) != S_IFDIR) {
/freebsd-9.3-release/contrib/gnu-sort/lib/
H A Dstat-macros.h65 # ifdef S_IFDIR
66 # define S_ISDIR(m) (((m) & S_IFMT) == S_IFDIR)

Completed in 210 milliseconds

123456