Searched refs:S_IFMT (Results 1 - 25 of 198) sorted by relevance

12345678

/macosx-10.9.5/bind9-45.100/bind9/lib/isc/win32/include/isc/
H A Dstat.h39 #ifndef S_IFMT
40 # define S_IFMT _S_IFMT macro
53 # define S_ISDIR(m) (((m) & S_IFMT) == S_IFDIR)
56 # define S_ISREG(m) (((m) & S_IFMT) == S_IFREG)
/macosx-10.9.5/bash-92/bash-3.2/include/
H A Dposixstat.h42 #if !defined (S_IFMT)
43 # define S_IFMT 0170000 macro
44 #endif /* !S_IFMT */
51 #if defined (_S_IFMT) && !defined (S_IFMT)
52 #define S_IFMT _S_IFMT macro
80 #define S_ISBLK(m) (((m)&S_IFMT) == S_IFBLK) /* block device */
84 #define S_ISCHR(m) (((m)&S_IFMT) == S_IFCHR) /* character device */
88 #define S_ISDIR(m) (((m)&S_IFMT) == S_IFDIR) /* directory */
92 #define S_ISREG(m) (((m)&S_IFMT) == S_IFREG) /* file */
96 #define S_ISFIFO(m) (((m)&S_IFMT)
[all...]
/macosx-10.9.5/bash-92/bash-3.2/lib/readline/
H A Dposixstat.h42 #if !defined (S_IFMT)
43 # define S_IFMT 0170000 macro
44 #endif /* !S_IFMT */
51 #if defined (_S_IFMT) && !defined (S_IFMT)
52 #define S_IFMT _S_IFMT macro
80 #define S_ISBLK(m) (((m)&S_IFMT) == S_IFBLK) /* block device */
84 #define S_ISCHR(m) (((m)&S_IFMT) == S_IFCHR) /* character device */
88 #define S_ISDIR(m) (((m)&S_IFMT) == S_IFDIR) /* directory */
92 #define S_ISREG(m) (((m)&S_IFMT) == S_IFREG) /* file */
96 #define S_ISFIFO(m) (((m)&S_IFMT)
[all...]
/macosx-10.9.5/cxxfilt-11/cxxfilt/binutils/
H A Dfilemode.c136 #define S_ISDIR(i) (((i) & S_IFMT) == S_IFDIR)
144 #define S_ISBLK(i) (((i) & S_IFMT) == S_IFBLK)
152 #define S_ISCHR(i) (((i) & S_IFMT) == S_IFCHR)
160 #define S_ISFIFO(i) (((i) & S_IFMT) == S_IFIFO)
168 #define S_ISSOCK(i) (((i) & S_IFMT) == S_IFSOCK)
176 #define S_ISLNK(i) (((i) & S_IFMT) == S_IFLNK)
198 #ifdef S_IFMT
200 if ((bits & S_IFMT) == S_IFMPC
201 || (bits & S_IFMT) == S_IFMPB)
205 if ((bits & S_IFMT)
[all...]
/macosx-10.9.5/xnu-2422.115.4/bsd/sys/_types/
H A D_s_ifmt.h33 #ifndef S_IFMT
35 #define S_IFMT 0170000 /* [XSI] type of file mask */ macro
74 #endif /* !S_IFMT */
/macosx-10.9.5/emacs-92/emacs/src/
H A Dfilemode.c66 #define S_ISBLK(m) (((m) & S_IFMT) == S_IFBLK)
69 #define S_ISCHR(m) (((m) & S_IFMT) == S_IFCHR)
72 #define S_ISDIR(m) (((m) & S_IFMT) == S_IFDIR)
75 #define S_ISREG(m) (((m) & S_IFMT) == S_IFREG)
78 #define S_ISFIFO(m) (((m) & S_IFMT) == S_IFIFO)
81 #define S_ISLNK(m) (((m) & S_IFMT) == S_IFLNK)
84 #define S_ISSOCK(m) (((m) & S_IFMT) == S_IFSOCK)
87 #define S_ISMPB(m) (((m) & S_IFMT) == S_IFMPB)
88 #define S_ISMPC(m) (((m) & S_IFMT) == S_IFMPC)
91 #define S_ISNWK(m) (((m) & S_IFMT)
[all...]
/macosx-10.9.5/text_cmds-87/sort/
H A Dstat-macros.h28 # ifndef S_IFMT
29 # define S_IFMT 0170000 macro
50 # define S_ISBLK(m) (((m) & S_IFMT) == S_IFBLK)
58 # define S_ISCHR(m) (((m) & S_IFMT) == S_IFCHR)
66 # define S_ISDIR(m) (((m) & S_IFMT) == S_IFDIR)
74 # define S_ISDOOR(m) (((m) & S_IFMT) == S_IFDOOR)
82 # define S_ISFIFO(m) (((m) & S_IFMT) == S_IFIFO)
90 # define S_ISLNK(m) (((m) & S_IFMT) == S_IFLNK)
98 # define S_ISMPB(m) (((m) & S_IFMT) == S_IFMPB)
99 # define S_ISMPC(m) (((m) & S_IFMT)
[all...]
/macosx-10.9.5/gnutar-452/gnutar/lib/
H A Dsys_stat_.h36 #ifndef S_IFMT
37 # define S_IFMT 0170000 macro
56 # define S_ISBLK(m) (((m) & S_IFMT) == S_IFBLK)
64 # define S_ISCHR(m) (((m) & S_IFMT) == S_IFCHR)
72 # define S_ISDIR(m) (((m) & S_IFMT) == S_IFDIR)
84 # define S_ISFIFO(m) (((m) & S_IFMT) == S_IFIFO)
92 # define S_ISLNK(m) (((m) & S_IFMT) == S_IFLNK)
100 # define S_ISMPB(m) (((m) & S_IFMT) == S_IFMPB)
101 # define S_ISMPC(m) (((m) & S_IFMT) == S_IFMPC)
110 # define S_ISNAM(m) (((m) & S_IFMT)
[all...]
/macosx-10.9.5/ntp-88/lib/isc/win32/include/isc/
H A Dstat.h40 #define S_IFMT _S_IFMT /* file type mask */ macro
47 # define S_ISDIR(m) (((m) & S_IFMT) == S_IFDIR)
50 # define S_ISREG(m) (((m) & S_IFMT) == S_IFREG)
/macosx-10.9.5/ksh-20/ksh/src/lib/libast/comp/
H A Dmkfifo.c43 return mknod(path, S_IFIFO|(mode & ~S_IFMT), 0);
/macosx-10.9.5/emacs-92/emacs/mac/inc/sys/
H A Dstat.h34 #undef S_IFMT macro
49 inconsistent with CW definitions because CW uses bits 8-12 for S_IFMT info.
51 #define S_IFMT 0170000 /* type of file */ macro
/macosx-10.9.5/ipsec-258.100.1/ipsec-tools/racoon/
H A Dsafefile.c73 switch (s.st_mode & S_IFMT) {
79 (s.st_mode & S_IFMT));
/macosx-10.9.5/cxxfilt-11/cxxfilt/libiberty/
H A Dunlink-if-ordinary.c55 #define S_ISLNK(m) (((m) & S_IFMT) == S_IFLNK)
/macosx-10.9.5/groff-38/groff/src/include/
H A Dposix.h54 #define S_ISREG(m) (((m) & S_IFMT) == S_IFREG)
/macosx-10.9.5/expat-12/expat/xmlwf/
H A Dreadfilemap.c27 #ifndef S_IFMT
28 #define S_IFMT _S_IFMT macro
30 #define S_ISREG(m) (((m) & S_IFMT) == S_IFREG)
/macosx-10.9.5/tcl-102/tcl_ext/tclxml/tclxml/expat/xmlwf/
H A Dreadfilemap.c41 #ifndef S_IFMT
42 #define S_IFMT _S_IFMT macro
44 #define S_ISREG(m) (((m) & S_IFMT) == S_IFREG)
/macosx-10.9.5/tcl-102/tcl_ext/xotcl/xotcl/library/xml/TclExpat-1.1/
H A Dreadfilemap.c31 #ifndef S_IFMT
32 #define S_IFMT _S_IFMT macro
34 #define S_ISREG(m) (((m) & S_IFMT) == S_IFREG)
/macosx-10.9.5/gnuserv-7/gnuserv/
H A Dsysfile.h214 #define S_ISBLK(m) (((m) & S_IFMT) == S_IFBLK)
217 #define S_ISCHR(m) (((m) & S_IFMT) == S_IFCHR)
220 #define S_ISDIR(m) (((m) & S_IFMT) == S_IFDIR)
223 #define S_ISREG(m) (((m) & S_IFMT) == S_IFREG)
226 #define S_ISFIFO(m) (((m) & S_IFMT) == S_IFIFO)
229 #define S_ISLNK(m) (((m) & S_IFMT) == S_IFLNK)
232 #define S_ISSOCK(m) (((m) & S_IFMT) == S_IFSOCK)
235 #define S_ISMPB(m) (((m) & S_IFMT) == S_IFMPB)
236 #define S_ISMPC(m) (((m) & S_IFMT) == S_IFMPC)
239 #define S_ISNWK(m) (((m) & S_IFMT)
[all...]
/macosx-10.9.5/Libc-997.90.3/emulated/
H A Dlchflags.c38 if((s.st_mode & S_IFMT) != S_IFLNK)
H A Dlchmod.c39 if((s.st_mode & S_IFMT) != S_IFLNK)
/macosx-10.9.5/diskdev_cmds-572.1.1/fstyp.tproj/
H A Dfstyp_msdos.c129 if ((stb.st_mode & S_IFMT) != S_IFCHR)
160 if ((stblock.st_mode & S_IFMT) == S_IFBLK) {
167 if ((stchar.st_mode & S_IFMT) == S_IFCHR) {
173 } else if ((stblock.st_mode & S_IFMT) == S_IFCHR && !retried) {
H A Dfstyp_ntfs.c129 if ((stb.st_mode & S_IFMT) != S_IFCHR)
160 if ((stblock.st_mode & S_IFMT) == S_IFBLK) {
167 if ((stchar.st_mode & S_IFMT) == S_IFCHR) {
173 } else if ((stblock.st_mode & S_IFMT) == S_IFCHR && !retried) {
/macosx-10.9.5/gpatch-3/patch/
H A Drmdir.c35 # define S_ISDIR(m) (((m) & S_IFMT) == S_IFDIR)
/macosx-10.9.5/hfs-226.1.1/fstyp_hfs/
H A Dfstyp_hfs.c130 if ((stb.st_mode & S_IFMT) != S_IFCHR)
161 if ((stblock.st_mode & S_IFMT) == S_IFBLK) {
168 if ((stchar.st_mode & S_IFMT) == S_IFCHR) {
174 } else if ((stblock.st_mode & S_IFMT) == S_IFCHR && !retried) {
/macosx-10.9.5/zsh-60/zsh/Src/
H A Dzsh_system.h543 #ifndef S_IFMT
544 # define S_IFMT 0170000 macro
548 # define S_ISBLK(m) (((m) & S_IFMT) == S_IFBLK)
551 # define S_ISCHR(m) (((m) & S_IFMT) == S_IFCHR)
554 # define S_ISDIR(m) (((m) & S_IFMT) == S_IFDIR)
557 # define S_ISDOOR(m) (((m) & S_IFMT) == S_IFDOOR)
560 # define S_ISFIFO(m) (((m) & S_IFMT) == S_IFIFO)
563 # define S_ISLNK(m) (((m) & S_IFMT) == S_IFLNK)
566 # define S_ISMPB(m) (((m) & S_IFMT) == S_IFMPB)
569 # define S_ISMPC(m) (((m) & S_IFMT)
[all...]

Completed in 170 milliseconds

12345678