HomeSort by relevance Sort by last modified time
    Searched refs:S_IFBLK (Results 1 - 25 of 302) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /system/core/adb/sysdeps/
stat.h 50 // mingw defines S_IFBLK to a different value from bionic.
51 #undef S_IFBLK
52 #define S_IFBLK 0060000
54 #define S_ISBLK(mode) (((mode) & S_IFMT) == S_IFBLK)
61 static_assert(S_IFBLK == 0060000, "");
  /external/strace/xlat/
modetypes.h 26 #if defined(S_IFBLK) || (defined(HAVE_DECL_S_IFBLK) && HAVE_DECL_S_IFBLK)
27 XLAT(S_IFBLK),
  /external/syslinux/com32/include/sys/
stat.h 16 #define S_IFBLK 0060000
27 #define S_ISBLK(m) (((m) & S_IFMT) == S_IFBLK)
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/linux/
stat.h 11 #define S_IFBLK 0060000
23 #define S_ISBLK(m) (((m) & S_IFMT) == S_IFBLK)
  /external/ltp/testcases/kernel/device-drivers/include/
userBlockInclude.c 121 (S_IFBLK | S_IRUSR | S_IWUSR |
135 if ((!(statbuf.st_mode & S_IFBLK)) ||
141 (S_IFBLK | S_IRUSR | S_IWUSR
  /external/ltp/testcases/kernel/device-drivers/nls/
userBlockNLS.c 121 (S_IFBLK | S_IRUSR | S_IWUSR |
135 if ((!(statbuf.st_mode & S_IFBLK)) ||
141 (S_IFBLK | S_IRUSR | S_IWUSR
  /bionic/tests/headers/posix/
sys_stat_h_mode_constants.h 30 MACRO(S_IFBLK);
  /external/strace/
mknod.c 51 case S_IFBLK:
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
stat.py 32 S_IFBLK = 0060000
47 return S_IFMT(mode) == S_IFBLK
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
stat.py 32 S_IFBLK = 0060000
47 return S_IFMT(mode) == S_IFBLK
  /external/python/cpython2/Lib/
stat.py 32 S_IFBLK = 0060000
47 return S_IFMT(mode) == S_IFBLK
  /prebuilts/gdb/darwin-x86/lib/python2.7/
stat.py 32 S_IFBLK = 0060000
47 return S_IFMT(mode) == S_IFBLK
  /prebuilts/gdb/linux-x86/lib/python2.7/
stat.py 32 S_IFBLK = 0060000
47 return S_IFMT(mode) == S_IFBLK
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
stat.py 32 S_IFBLK = 0060000
47 return S_IFMT(mode) == S_IFBLK
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
stat.py 32 S_IFBLK = 0060000
47 return S_IFMT(mode) == S_IFBLK
  /external/python/cpython3/Lib/
stat.py 38 S_IFBLK = 0o060000 # block device
56 return S_IFMT(mode) == S_IFBLK
115 (S_IFBLK, "b"),
  /external/strace/tests/
umode_t.c 76 test_syscall((0xffff & ~S_IFMT) | S_IFBLK);
  /external/strace/tests-m32/
umode_t.c 76 test_syscall((0xffff & ~S_IFMT) | S_IFBLK);
  /external/strace/tests-mx32/
umode_t.c 76 test_syscall((0xffff & ~S_IFMT) | S_IFBLK);
  /external/toybox/toys/lsb/
mknod.c 40 mode_t modes[] = {S_IFIFO, S_IFCHR, S_IFCHR, S_IFBLK};
  /bionic/libc/kernel/uapi/linux/
stat.h 27 #define S_IFBLK 0060000
38 #define S_ISBLK(m) (((m) & S_IFMT) == S_IFBLK)
  /external/kernel-headers/original/uapi/linux/
stat.h 13 #define S_IFBLK 0060000
25 #define S_ISBLK(m) (((m) & S_IFMT) == S_IFBLK)
  /toolchain/binutils/binutils-2.27/binutils/
filemode.c 143 #ifdef S_IFBLK
144 #define S_ISBLK(i) (((i) & S_IFMT) == S_IFBLK)
145 #else /* ! defined (S_IFBLK) */
147 #endif /* ! defined (S_IFBLK) */
  /external/toybox/toys/pending/
mdev.c 55 type = path[5]=='c' ? S_IFCHR : S_IFBLK;
62 type = strcmp(temp, "block") ? S_IFCHR : S_IFBLK;
196 if (type == S_IFBLK) close(open(toybuf, O_RDONLY)); // scan for partitions
  /libcore/ojluni/src/main/java/sun/nio/fs/
UnixConstants.java 96 static final int S_IFBLK = OsConstants.S_IFBLK;

Completed in 113 milliseconds

1 2 3 4 5 6 7 8 91011>>