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

12345678

/macosx-10.10.1/bind9-45.101/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.10.1/bash-94.1.2/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.10.1/bash-94.1.2/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.10.1/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.10.1/xnu-2782.1.97/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.10.1/emacs-93/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.10.1/text_cmds-88/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.10.1/gnutar-453/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.10.1/ntp-92/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.10.1/ksh-23/ksh/src/lib/libast/comp/
H A Dmkfifo.c43 return mknod(path, S_IFIFO|(mode & ~S_IFMT), 0);
/macosx-10.10.1/emacs-93/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.10.1/ipsec-286.1.1/ipsec-tools/racoon/
H A Dsafefile.c73 switch (s.st_mode & S_IFMT) {
79 (s.st_mode & S_IFMT));
/macosx-10.10.1/cxxfilt-11/cxxfilt/libiberty/
H A Dunlink-if-ordinary.c55 #define S_ISLNK(m) (((m) & S_IFMT) == S_IFLNK)
/macosx-10.10.1/groff-38/groff/src/include/
H A Dposix.h54 #define S_ISREG(m) (((m) & S_IFMT) == S_IFREG)
/macosx-10.10.1/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.10.1/tcl-105/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.10.1/tcl-105/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.10.1/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.10.1/Libc-1044.1.2/emulated/
H A Dlchflags.c38 if((s.st_mode & S_IFMT) != S_IFLNK)
/macosx-10.10.1/diskdev_cmds-576/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.10.1/gpatch-3/patch/
H A Drmdir.c35 # define S_ISDIR(m) (((m) & S_IFMT) == S_IFDIR)
/macosx-10.10.1/hfs-285/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.10.1/zsh-61/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...]
/macosx-10.10.1/tcsh-65/tcsh/
H A Dtc.os.h215 # ifndef S_IFMT
216 # define S_IFMT 0170000 /* type of file */ macro
226 # endif /* S_IFMT */
240 #ifdef S_IFMT
242 # define S_ISDIR(a) (((a) & S_IFMT) == S_IFDIR)
245 # define S_ISCHR(a) (((a) & S_IFMT) == S_IFCHR)
248 # define S_ISBLK(a) (((a) & S_IFMT) == S_IFBLK)
251 # define S_ISREG(a) (((a) & S_IFMT) == S_IFREG)
254 # define S_ISFIFO(a) (((a) & S_IFMT) == S_IFIFO)
257 # define S_ISNAM(a) (((a) & S_IFMT)
[all...]

Completed in 341 milliseconds

12345678