Home
last modified time | relevance | path

Searched refs:S_ISBLK (Results 1 – 9 of 9) sorted by relevance

/frameworks/base/ravenwood/runtime-test/test/com/android/ravenwood/runtimetest/
DOsConstantsTest.java22 import static android.system.OsConstants.S_ISBLK;
316 assertTrue (S_ISBLK(OsConstants.S_IFBLK)); in test_S_ISBLK()
318 assertFalse(S_ISBLK(OsConstants.S_IFCHR)); in test_S_ISBLK()
319 assertFalse(S_ISBLK(OsConstants.S_IFDIR)); in test_S_ISBLK()
320 assertFalse(S_ISBLK(OsConstants.S_IFIFO)); in test_S_ISBLK()
321 assertFalse(S_ISBLK(OsConstants.S_IFLNK)); in test_S_ISBLK()
322 assertFalse(S_ISBLK(OsConstants.S_IFMT)); in test_S_ISBLK()
323 assertFalse(S_ISBLK(OsConstants.S_IFREG)); in test_S_ISBLK()
324 assertFalse(S_ISBLK(OsConstants.S_IFSOCK)); in test_S_ISBLK()
325 assertFalse(S_ISBLK(OsConstants.S_IRGRP)); in test_S_ISBLK()
[all …]
/frameworks/base/libs/androidfw/
Dmisc.cpp59 else if (S_ISBLK(sb.st_mode)) in getFileType()
/frameworks/compile/mclinker/lib/Support/Unix/
DPathV3.inc143 else if (S_ISBLK(path_stat.st_mode))
170 if (S_ISBLK(path_stat.st_mode))
/frameworks/compile/mclinker/lib/Support/Windows/
DPathV3.inc137 else if (S_ISBLK(path_stat.st_mode))
/frameworks/base/tools/aapt2/util/
DFiles.cpp86 } else if (S_ISBLK(sb.st_mode)) {
/frameworks/base/core/jni/
Dfd_utils.cpp261 } else if (S_ISBLK(f_stat.st_mode)) { in CreateFromFd()
/frameworks/base/ravenwood/runtime-helper-src/libcore-fake/android/system/
DOsConstants.java64 public static boolean S_ISBLK(int mode) { return (mode & S_IFMT) == S_IFBLK; } in S_ISBLK() method in OsConstants
/frameworks/base/tools/aapt2/integration-tests/CommandTests/
Dandroid-33.jarAndroidManifest.xml META-INF/ META-INF/MANIFEST.MF NOTICES/ NOTICES/libcore ...
/frameworks/opt/setupwizard/tools/docs/
Dandroid-22.txt27637 method public static boolean S_ISBLK(int);