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

1234

/netbsd-current/external/bsd/libarchive/dist/tar/
H A Dbsdtar_windows.h58 #ifndef S_ISBLK
59 #define S_ISBLK(a) (0) macro
/netbsd-current/external/gpl3/binutils.old/dist/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
/netbsd-current/external/gpl3/binutils/dist/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
/netbsd-current/external/gpl3/gdb.old/dist/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
/netbsd-current/external/gpl2/mkhybrid/dist/include/
H A Dstatdefs.h36 #undef S_ISBLK /* Block special */ macro
81 #ifndef S_ISBLK /* Block special */
83 # define S_ISBLK(m) (((m) & S_IFMT) == S_IFBLK) macro
85 # define S_ISBLK(m) (0) macro
/netbsd-current/external/gpl3/gdb.old/dist/readline/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
/netbsd-current/external/gpl3/gdb/dist/readline/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
/netbsd-current/external/gpl2/xcvs/dist/lib/
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
/netbsd-current/external/gpl2/diffutils/dist/src/
H A Dsystem.h67 # undef S_ISBLK macro
80 #if !defined S_ISBLK && defined S_IFBLK
81 # define S_ISBLK(mode) (((mode) & S_IFMT) == S_IFBLK) macro
354 # if HAVE_STRUCT_STAT_ST_RDEV && defined S_ISBLK && defined S_ISCHR
356 (((S_ISBLK ((s)->st_mode) && S_ISBLK ((t)->st_mode)) \
/netbsd-current/external/gpl2/xcvs/dist/diff/
H A Dsystem.h42 #undef S_ISBLK macro
55 #if !defined(S_ISBLK) && defined(S_IFBLK)
56 #define S_ISBLK(mode) (((mode) & S_IFMT) == S_IFBLK) macro
/netbsd-current/usr.bin/find/
H A Dls.c77 if (S_ISCHR(sb->st_mode) || S_ISBLK(sb->st_mode))
/netbsd-current/external/bsd/libarchive/dist/libarchive/
H A Darchive_write_open_fd.c105 if (S_ISCHR(st.st_mode) || S_ISBLK(st.st_mode) ||
H A Darchive_windows.h179 #ifndef S_ISBLK
180 #define S_ISBLK(m) (((m) & S_IFMT) == S_IFBLK) /* block special */ macro
H A Darchive_read_open_filename.c359 else if ((S_ISCHR(st.st_mode) || S_ISBLK(st.st_mode)) &&
373 else if (S_ISBLK(st.st_mode) &&
585 && !S_ISBLK(mine->st_mode)) {
/netbsd-current/external/gpl2/xcvs/dist/src/
H A Dfilesubr.c28 #ifndef S_ISBLK
29 #define S_ISBLK(a) 0 macro
34 #define IS_DEVICE(sbp) (S_ISBLK((sbp)->st_mode) || S_ISCHR((sbp)->st_mode))
637 if (S_ISBLK (sb1.st_mode) || S_ISCHR (sb1.st_mode))
/netbsd-current/external/gpl3/gdb.old/dist/gnulib/import/
H A Dsys_stat.in.h162 # undef S_ISBLK
175 #ifndef S_ISBLK
177 # define S_ISBLK(m) (((m) & S_IFMT) == S_IFBLK)
179 # define S_ISBLK(m) 0
/netbsd-current/tests/lib/libc/sys/
H A Dt_mknod.c162 if (S_ISBLK(st.st_mode) == 0)
/netbsd-current/lib/libutil/
H A Dgetdiskrawname.c152 if (!S_ISBLK(st.st_mode)) {
/netbsd-current/sbin/fsck/
H A Dfsutil.c212 if (S_ISBLK(stblock.st_mode)) {
/netbsd-current/tests/include/
H A Dt_paths.c183 ATF_CHECK(S_ISBLK(m) != 0 || S_ISCHR(m) != 0);
/netbsd-current/external/gpl2/lvm2/dist/lib/activate/
H A Dfs.c103 if (!S_ISBLK(buf.st_mode))
220 if (!S_ISLNK(buf.st_mode) && !S_ISBLK(buf.st_mode)) {
/netbsd-current/external/gpl3/gcc.old/dist/libcpp/
H A Dsystem.h340 #ifndef S_ISBLK
341 #define S_ISBLK(m) (((m) & S_IFMT) == S_IFBLK) macro
/netbsd-current/external/gpl3/gcc/dist/libcpp/
H A Dsystem.h340 #ifndef S_ISBLK
341 #define S_ISBLK(m) (((m) & S_IFMT) == S_IFBLK) macro
/netbsd-current/external/gpl3/gdb/dist/gnulib/import/
H A Dsys_stat.in.h162 # undef S_ISBLK
175 #ifndef S_ISBLK
177 # define S_ISBLK(m) (((m) & S_IFMT) == S_IFBLK)
179 # define S_ISBLK(m) 0
/netbsd-current/bin/ls/
H A Dprint.c174 if (S_ISCHR(sp->st_mode) || S_ISBLK(sp->st_mode))
527 if (S_ISCHR(p->fts_statp->st_mode) || S_ISBLK(p->fts_statp->st_mode) ||

Completed in 184 milliseconds

1234