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

12345678

/macosx-10.10.1/bind9-45.101/bind9/lib/isc/win32/include/isc/
H A Dstat.h42 #ifndef S_IFDIR
43 # define S_IFDIR _S_IFDIR macro
53 # define S_ISDIR(m) (((m) & S_IFMT) == S_IFDIR)
/macosx-10.10.1/ntp-92/libopts/compat/
H A Dwindows-config.h142 # define S_IFDIR _S_IFDIR macro
143 # define S_ISDIR(mode) (((mode) & S_IFDIR) == S_IFDIR)
/macosx-10.10.1/ntp-92/sntp/libopts/compat/
H A Dwindows-config.h142 # define S_IFDIR _S_IFDIR macro
143 # define S_ISDIR(mode) (((mode) & S_IFDIR) == S_IFDIR)
/macosx-10.10.1/bash-94.1.2/bash-3.2/include/
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 */
/macosx-10.10.1/bash-94.1.2/bash-3.2/lib/readline/
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)
/macosx-10.10.1/gpatch-3/patch/
H A Drmdir.c34 #if !defined(S_ISDIR) && defined(S_IFDIR)
35 # define S_ISDIR(m) (((m) & S_IFMT) == S_IFDIR)
/macosx-10.10.1/emacs-93/emacs/mac/inc/sys/
H A Dstat.h39 #undef S_IFDIR macro
56 #define S_IFDIR 0040000 /* directory */ macro
/macosx-10.10.1/ntp-92/lib/isc/win32/include/isc/
H A Dstat.h41 #define S_IFDIR _S_IFDIR /* directory */ macro
47 # define S_ISDIR(m) (((m) & S_IFMT) == S_IFDIR)
/macosx-10.10.1/xnu-2782.1.97/bsd/sys/_types/
H A D_s_ifmt.h38 #define S_IFDIR 0040000 /* [XSI] directory */ macro
/macosx-10.10.1/libarchive-30/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);
/macosx-10.10.1/cxxfilt-11/cxxfilt/binutils/
H A Dfilemode.c135 #ifdef S_IFDIR
136 #define S_ISDIR(i) (((i) & S_IFMT) == S_IFDIR)
137 #else /* ! defined (S_IFDIR) */
139 #endif /* ! defined (S_IFDIR) */
/macosx-10.10.1/emacs-93/emacs/src/
H A Dfilemode.c71 #if !defined(S_ISDIR) && defined(S_IFDIR)
72 #define S_ISDIR(m) (((m) & S_IFMT) == S_IFDIR)
/macosx-10.10.1/Libc-1044.1.2/string/FreeBSD/
H A Dstrmode.c45 case S_IFDIR: /* directory */
/macosx-10.10.1/OpenSSH-189/openssh/openbsd-compat/
H A Dstrmode.c47 case S_IFDIR: /* directory */
/macosx-10.10.1/bind9-45.101/bind9/lib/isc/unix/
H A Dfsaccess.c46 if ((statb.st_mode & S_IFDIR) != 0)
/macosx-10.10.1/emacs-93/emacs/src/m/
H A Dconvex.h134 #define S_IFDIR _S_IFDIR
133 #define S_IFDIR macro
/macosx-10.10.1/ntp-92/lib/isc/unix/
H A Dfsaccess.c46 if ((statb.st_mode & S_IFDIR) != 0)
/macosx-10.10.1/xar-254/xar/lib/
H A Dstrmode.h45 case S_IFDIR: /* directory */
/macosx-10.10.1/xar-254/xar/test/
H A Dbuffer.c63 sb.st_mode = S_IFDIR | S_IRWXU;
/macosx-10.10.1/gnutar-453/gnutar/lib/
H A Dsys_stat_.h71 # ifdef S_IFDIR
72 # define S_ISDIR(m) (((m) & S_IFMT) == S_IFDIR)

Completed in 308 milliseconds

12345678