HomeSort by relevance Sort by last modified time
    Searched refs:S_IFBLK (Results 76 - 100 of 172) sorted by null

1 2 34 5 6 7

  /external/toybox/toys/lsb/
mknod.c 30 mode_t modes[] = {S_IFIFO, S_IFCHR, S_IFCHR, S_IFBLK};
  /external/strace/
mknod.c 24 case S_IFBLK:
66 case S_IFBLK:
printstat.h 42 case S_IFCHR: case 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
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/os/
FileUtils.java 25 private static final int S_IFBLK = 0060000;
116 int[] typeMasks = {S_IFSOCK, S_IFLNK, S_IFREG, S_IFBLK, S_IFDIR, S_IFCHR, S_IFIFO};
  /external/toybox/toys/pending/
mdev.c 57 type = path[5]=='c' ? S_IFCHR : S_IFBLK;
65 type = strcmp(temp, "block") ? S_IFCHR : S_IFBLK;
201 if (type == S_IFBLK) close(open(temp, O_RDONLY)); // scan for partitions
  /external/openssh/openbsd-compat/
strmode.c 53 case S_IFBLK: /* block special */
  /cts/tests/tests/permission/src/android/permission/cts/
FileUtils.java 33 public static final int S_IFBLK = 0060000;
  /external/toybox/toys/other/
makedevs.c 79 } else mode |= (mode_t[]){S_IFIFO, S_IFCHR, S_IFBLK, 0, 0}[i];
  /cts/libs/deviceutil/src/android/cts/util/
FileUtils.java 32 public static final int S_IFBLK = 0060000;
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/setools/policyrep/
fscontext.py 71 stat.S_IFBLK: "-b",
97 """The file type (e.g. stat.S_IFBLK) for this genfscon statement."""
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/setoolsgui/setools/policyrep/
fscontext.py 71 stat.S_IFBLK: "-b",
97 """The file type (e.g. stat.S_IFBLK) for this genfscon statement."""
  /system/vold/
Loop.cpp 145 mode_t mode = 0660 | S_IFBLK;
149 rc = selabel_lookup(sehandle, &secontext, filename, S_IFBLK);
Utils.cpp 66 if (!selabel_lookup(sehandle, &secontext, cpath, S_IFBLK)) {
71 mode_t mode = 0660 | S_IFBLK;
  /external/selinux/libselinux/utils/
matchpathcon.c 49 return S_IFBLK;
  /external/strace/tests/
stat.c 75 printf("S_IFBLK");
138 case S_IFCHR: case S_IFBLK:
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/
fcntl.h 46 # define S_IFBLK __S_IFBLK
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/sys/
stat.h 143 #define S_IFBLK _S_IFBLK
158 #define S_ISBLK(m) (((m) & S_IFMT) == S_IFBLK)
  /system/core/toolbox/
ls.c 139 case S_IFBLK: return 'b';
295 case S_IFBLK:
  /external/bison/lib/
sys_stat.in.h 100 # ifdef S_IFBLK
101 # define S_ISBLK(m) (((m) & S_IFMT) == S_IFBLK)
  /external/selinux/libselinux/src/
label_file.h 88 return S_IFBLK;
  /external/bison/darwin-lib/sys/
stat.h 412 # ifdef S_IFBLK
413 # define S_ISBLK(m) (((m) & S_IFMT) == S_IFBLK)
    [all...]
  /external/bison/linux-lib/sys/
stat.h 412 # ifdef S_IFBLK
413 # define S_ISBLK(m) (((m) & S_IFMT) == S_IFBLK)
    [all...]
  /libcore/luni/src/main/java/android/system/
OsConstants.java 29 public static boolean S_ISBLK(int mode) { return (mode & S_IFMT) == S_IFBLK; }
468 public static final int S_IFBLK = placeholder();
    [all...]

Completed in 1172 milliseconds

1 2 34 5 6 7