Searched refs:S_ISBLK (Results 1 - 25 of 85) sorted by relevance

1234

/macosx-10.9.5/libarchive-29/libarchive/tar/
H A Dbsdtar_windows.h56 #ifndef S_ISBLK
57 #define S_ISBLK(a) (0) macro
/macosx-10.9.5/cxxfilt-11/cxxfilt/binutils/
H A Dfilemode.c142 #ifndef S_ISBLK
144 #define S_ISBLK(i) (((i) & S_IFMT) == S_IFBLK)
146 #define S_ISBLK(i) 0
148 #endif /* ! defined (S_ISBLK) */
189 if (S_ISBLK (bits))
143 #define S_ISBLK macro
145 #define S_ISBLK macro
/macosx-10.9.5/emacs-92/emacs/src/
H A Dfilemode.c53 #undef S_ISBLK
65 #if !defined(S_ISBLK) && defined(S_IFBLK) macro
66 #define S_ISBLK(m) (((m) & S_IFMT) == S_IFBLK)
174 #ifdef S_ISBLK
175 if (S_ISBLK (bits))
52 #undef S_ISBLK macro
/macosx-10.9.5/bash-92/bash-3.2/include/
H A Dposixstat.h30 # undef S_ISBLK macro
79 #if defined (S_IFBLK) && !defined (S_ISBLK)
80 #define S_ISBLK(m) (((m)&S_IFMT) == S_IFBLK) /* block device */ macro
/macosx-10.9.5/bash-92/bash-3.2/lib/readline/
H A Dposixstat.h30 # undef S_ISBLK macro
79 #if defined (S_IFBLK) && !defined (S_ISBLK)
80 #define S_ISBLK(m) (((m)&S_IFMT) == S_IFBLK) /* block device */ macro
/macosx-10.9.5/rsync-42/rsync/lib/
H A Dpermstring.c58 else if (S_ISBLK(mode))
/macosx-10.9.5/ksh-20/ksh/src/lib/libast/include/
H A Dfs3d.h48 #define iview(p) ((S_ISBLK((p)->st_mode)||S_ISCHR((p)->st_mode))?0:(p)->st_rdev)
49 #define IVIEW(p,v) do{if(!S_ISBLK((p)->st_mode)&&!S_ISCHR((p)->st_mode))(p)->st_rdev=(v);}while(0)
/macosx-10.9.5/gnutar-452/gnutar/lib/
H A Dsys_stat_.h41 # undef S_ISBLK macro
54 #ifndef S_ISBLK
56 # define S_ISBLK(m) (((m) & S_IFMT) == S_IFBLK) macro
58 # define S_ISBLK(m) 0 macro
H A Dsystem.h145 # undef S_ISBLK macro
169 #ifndef S_ISBLK
171 # define S_ISBLK(mode) (((mode) & S_IFMT) == S_IFBLK) macro
173 # define S_ISBLK(mode) 0 macro
/macosx-10.9.5/ksh-20/ksh/src/lib/libast/string/
H A Dmodex.c63 else if (S_ISBLK(i)) x |= X_IFBLK;
/macosx-10.9.5/text_cmds-87/sort/
H A Dstat-macros.h33 # undef S_ISBLK macro
48 # ifndef S_ISBLK
50 # define S_ISBLK(m) (((m) & S_IFMT) == S_IFBLK) macro
52 # define S_ISBLK(m) 0 macro
/macosx-10.9.5/gnudiff-19/diffutils/src/
H A Dsystem.h65 # undef S_ISBLK macro
78 #if !defined S_ISBLK && defined S_IFBLK
79 # define S_ISBLK(mode) (((mode) & S_IFMT) == S_IFBLK) macro
352 # if HAVE_ST_RDEV && defined S_ISBLK && defined S_ISCHR
354 (((S_ISBLK ((s)->st_mode) && S_ISBLK ((t)->st_mode)) \
/macosx-10.9.5/ksh-20/ksh/src/lib/libast/features/
H A Dmode.c51 #ifdef S_ISBLK
52 if (!S_ISBLK(X_IFBLK)) idtype = 0;
55 printf("#define S_ISBLK(m) (S_ITYPE(m)==S_IFBLK)\n");
57 printf("#define S_ISBLK(m) 0\n");
/macosx-10.9.5/libarchive-29/libarchive/libarchive/
H A Darchive_write_open_fd.c107 if (S_ISCHR(st.st_mode) || S_ISBLK(st.st_mode) ||
/macosx-10.9.5/rsync-42/rsync/
H A Dtls.c112 if (S_ISCHR(buf.st_mode) || S_ISBLK(buf.st_mode)) {
/macosx-10.9.5/shell_cmds-175/find/
H A Dls.c77 if (S_ISCHR(sb->st_mode) || S_ISBLK(sb->st_mode))
/macosx-10.9.5/diskdev_cmds-572.1.1/fdisk.tproj/
H A Ddisk.c87 if (!S_ISCHR(st.st_mode) && !S_ISBLK(st.st_mode) && !S_ISREG(st.st_mode))
116 if (!S_ISCHR(st.st_mode) && !S_ISBLK(st.st_mode) && !S_ISREG(st.st_mode))
173 if (!S_ISREG(st.st_mode) || S_ISBLK(st.st_mode)) {
/macosx-10.9.5/gnuserv-7/gnuserv/
H A Dsysfile.h201 #undef S_ISBLK macro
213 #if !defined(S_ISBLK) && defined(S_IFBLK)
214 #define S_ISBLK(m) (((m) & S_IFMT) == S_IFBLK) macro
/macosx-10.9.5/tcl-102/tcl/tcl/unix/
H A DtclUnixPort.h327 #ifndef S_ISBLK
329 # define S_ISBLK(m) (((m) & S_IFMT) == S_IFBLK) macro
331 # define S_ISBLK(m) 0 macro
333 #endif /* !S_ISBLK */
/macosx-10.9.5/tcl-102/tcl/tcl/win/
H A DtclWinPort.h337 #ifndef S_ISBLK
339 # define S_ISBLK(m) (((m) & S_IFMT) == S_IFBLK) macro
341 # define S_ISBLK(m) 0 macro
343 #endif /* !S_ISBLK */
/macosx-10.9.5/tcl-102/tcl84/tcl/win/
H A DtclWinPort.h315 #ifndef S_ISBLK
317 # define S_ISBLK(m) (((m) & S_IFMT) == S_IFBLK) macro
319 # define S_ISBLK(m) 0 macro
321 #endif /* !S_ISBLK */
/macosx-10.9.5/zsh-60/zsh/Src/
H A Dzsh_system.h525 # undef S_ISBLK macro
547 #if !defined(S_ISBLK) && defined(S_IFBLK)
548 # define S_ISBLK(m) (((m) & S_IFMT) == S_IFBLK) macro
589 #ifndef S_ISBLK
590 # define S_ISBLK(m) ((void)(m), 0) macro
/macosx-10.9.5/tcl-102/tcl84/tcl/unix/
H A DtclUnixPort.h365 #ifndef S_ISBLK
367 # define S_ISBLK(m) (((m) & S_IFMT) == S_IFBLK) macro
369 # define S_ISBLK(m) 0 macro
371 #endif /* !S_ISBLK */
/macosx-10.9.5/tcsh-65/tcsh/
H A Dtc.os.h232 # undef S_ISBLK macro
247 # if !defined(S_ISBLK) && defined(S_IFBLK)
248 # define S_ISBLK(a) (((a) & S_IFMT) == S_IFBLK) macro
249 # endif /* ! S_ISBLK && S_IFBLK */
/macosx-10.9.5/diskdev_cmds-572.1.1/dev_mkdb.tproj/
H A Ddev_mkdb.c146 else if (S_ISBLK(sb.st_mode))

Completed in 313 milliseconds

1234