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

1 2 3 4 5

  /bionic/tests/headers/posix/
sys_stat_h_file_type_test_macros.h 29 #if !defined(S_ISBLK)
30 #error S_ISBLK
  /system/core/adb/sysdeps/
stat.h 53 #undef S_ISBLK
54 #define S_ISBLK(mode) (((mode) & S_IFMT) == S_IFBLK)
  /toolchain/binutils/binutils-2.27/binutils/
filemode.c 142 #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))
  /external/ltp/testcases/kernel/io/disktest/
parse.h 54 #define IS_BLK(x) S_ISBLK(x)
  /external/syslinux/com32/include/sys/
stat.h 27 #define S_ISBLK(m) (((m) & S_IFMT) == S_IFBLK)
  /frameworks/base/libs/androidfw/
misc.cpp 55 else if (S_ISBLK(sb.st_mode))
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/linux/
stat.h 23 #define S_ISBLK(m) (((m) & S_IFMT) == S_IFBLK)
  /external/e2fsprogs/misc/
ismounted.c 95 if (S_ISBLK(st_buf.st_mode)) {
123 if (S_ISBLK(st_buf.st_mode)) {
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
stat.py 46 def S_ISBLK(mode):
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
stat.py 46 def S_ISBLK(mode):
  /external/fio/oslib/
linux-dev-lookup.c 43 if (!S_ISBLK(st.st_mode))
  /external/python/cpython2/Lib/
stat.py 46 def S_ISBLK(mode):
  /external/toybox/toys/other/
mountpoint.c 39 if (S_ISBLK(st1.st_mode)) {
  /prebuilts/gdb/darwin-x86/lib/python2.7/
stat.py 46 def S_ISBLK(mode):
  /prebuilts/gdb/linux-x86/lib/python2.7/
stat.py 46 def S_ISBLK(mode):
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
stat.py 46 def S_ISBLK(mode):
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
stat.py 46 def S_ISBLK(mode):
  /external/e2fsprogs/lib/ext2fs/
ismounted.c 118 if (S_ISBLK(st_buf.st_mode)) {
133 if (S_ISBLK(st_buf.st_mode)) {
313 S_ISBLK(st_buf.st_mode))
340 S_ISBLK(st_buf.st_mode) &&
407 if (stat(device, &st_buf) == 0 && S_ISBLK(st_buf.st_mode)) {
  /bionic/libc/kernel/uapi/linux/
stat.h 38 #define S_ISBLK(m) (((m) & S_IFMT) == S_IFBLK)
  /external/f2fs-tools/mkfs/
f2fs_format_utils.c 74 } else if (S_ISBLK(stat_buf->st_mode)) {
  /external/kernel-headers/original/uapi/linux/
stat.h 25 #define S_ISBLK(m) (((m) & S_IFMT) == S_IFBLK)
  /external/vboot_reference/futility/
file_type.c 94 if (S_ISREG(sb.st_mode) || S_ISBLK(sb.st_mode)) {
  /system/extras/tests/storage/
wipe_blkdev.c 115 if (!S_ISBLK(statbuf.st_mode)) {
  /system/core/libdiskconfig/
diskconfig.c 250 if (S_ISBLK(stat.st_mode) && ((rv = ioctl(fd, BLKRRPART, NULL)) < 0)) {
298 if (S_ISBLK(stat.st_mode)) {
372 if (S_ISBLK(stat.st_mode) && total_size > disk_size) {
  /device/linaro/bootloader/edk2/StdLib/Include/sys/
stat.h 136 #define S_ISBLK(m) ((m & _S_IFMT) == _S_IFBLK) ///< block special

Completed in 1047 milliseconds

1 2 3 4 5