Searched refs:S_IFBLK (Results 1 - 25 of 50) sorted by relevance

12

/freebsd-11-stable/contrib/libreadline/
H A Dposixstat.h63 #if defined (_S_IFBLK) && !defined (S_IFBLK)
64 #define S_IFBLK _S_IFBLK macro
79 #if defined (S_IFBLK) && !defined (S_ISBLK)
80 #define S_ISBLK(m) (((m)&S_IFMT) == S_IFBLK) /* block device */
/freebsd-11-stable/contrib/gdb/gdb/
H A Dgdb_stat.h40 #if !defined(S_ISBLK) && defined(S_IFBLK)
41 #define S_ISBLK(m) (((m) & S_IFMT) == S_IFBLK)
/freebsd-11-stable/contrib/binutils/binutils/
H A Dfilemode.c144 #ifdef S_IFBLK
145 #define S_ISBLK(i) (((i) & S_IFMT) == S_IFBLK)
146 #else /* ! defined (S_IFBLK) */
148 #endif /* ! defined (S_IFBLK) */
/freebsd-11-stable/contrib/diff/lib/
H A Dfile-type.h51 # ifdef S_IFBLK
52 # define S_ISBLK(m) (((m) & S_IFMT) == S_IFBLK)
/freebsd-11-stable/lib/libc/string/
H A Dstrmode.c51 case S_IFBLK: /* block special */
/freebsd-11-stable/sbin/fsck_ffs/
H A Dutilities.c84 case S_IFBLK:
H A Dsetup.c94 (statb.st_mode & S_IFMT) != S_IFBLK) {
/freebsd-11-stable/crypto/openssh/openbsd-compat/
H A Dstrmode.c53 case S_IFBLK: /* block special */
/freebsd-11-stable/contrib/netbsd-tests/lib/libc/sys/
H A Dt_mknod.c135 ATF_REQUIRE_ERRNO(EPERM, mknod(path, S_IFBLK, 0) == -1);
166 ATF_REQUIRE(mknod(path, S_IFBLK, 0) == 0);
170 atf_tc_fail_nonfatal("invalid mode from mknod(2) (S_IFBLK)");
/freebsd-11-stable/contrib/file/src/
H A Dfsmagic.c143 sb->st_mode = S_IFBLK;
235 #ifdef S_IFBLK
236 case S_IFBLK:
/freebsd-11-stable/contrib/tcsh/
H A Dtc.os.h218 # define S_IFBLK 0060000 /* block special */ macro
246 # if !defined(S_ISBLK) && defined(S_IFBLK)
247 # define S_ISBLK(a) (((a) & S_IFMT) == S_IFBLK)
248 # endif /* ! S_ISBLK && S_IFBLK */
/freebsd-11-stable/sbin/mknod/
H A Dmknod.c127 mode |= S_IFBLK;
/freebsd-11-stable/contrib/mtree/
H A Dmisc.c253 return S_IFBLK;
288 case S_IFBLK:
/freebsd-11-stable/crypto/openssl/crypto/rand/
H A Drandfile.c89 # elif defined(S_IFBLK)
90 # define S_ISBLK(m) ((m) & S_IFBLK)
/freebsd-11-stable/lib/libprocstat/
H A Dcommon_kvm.c164 mode |= S_IFBLK;
/freebsd-11-stable/contrib/netbsd-tests/fs/puffs/h_dtfs/
H A Ddtfs_vfsops.c80 va->va_mode |= S_IFBLK;
/freebsd-11-stable/bin/pax/
H A Dftree.c482 case S_IFBLK:
H A Dfile_subs.c369 file_mode |= S_IFBLK;
/freebsd-11-stable/sys/sys/
H A Dstat.h227 #define S_IFBLK 0060000 /* block special */ macro
/freebsd-11-stable/contrib/gcclibs/libcpp/
H A Dsystem.h309 #define S_ISBLK(m) (((m) & S_IFMT) == S_IFBLK)
/freebsd-11-stable/bin/cp/
H A Dcp.c459 case S_IFBLK:
/freebsd-11-stable/contrib/apr/file_io/unix/
H A Dfilestat.c40 case S_IFBLK:
/freebsd-11-stable/usr.sbin/fmtree/
H A Dcompare.c333 case S_IFBLK:
/freebsd-11-stable/usr.bin/stat/
H A Dstat.c644 devname(st->st_dev, S_IFBLK) :
647 S_ISBLK(st->st_mode) ? S_IFBLK :
894 case S_IFBLK: sdata = "Block Device"; break;
/freebsd-11-stable/usr.sbin/setfmac/
H A Dsetfmac.c350 entry->mode = S_IFBLK;

Completed in 476 milliseconds

12