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

1 2 3 4 5 6 7 8

  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/
osunistd.h 10 #define R_OK 4
  /external/qemu/
kvm-android.c 28 if (access("/dev/kvm",R_OK)) {
  /external/chromium_org/content/shell/app/
webkit_test_platform_support_linux.cc 23 if (access(font, R_OK) < 0) {
25 if (access(font, R_OK) < 0) {
95 if (access(kFonts[i], R_OK) < 0) {
  /system/core/healthd/
BatteryMonitor.cpp 301 if (access(path.string(), R_OK) == 0)
310 if (access(path, R_OK) == 0)
318 if (access(path, R_OK) == 0)
326 if (access(path, R_OK) == 0)
334 if (access(path, R_OK) == 0)
342 if (access(path, R_OK) == 0) {
348 if (access(path, R_OK) == 0)
357 if (access(path, R_OK) == 0)
365 if (access(path, R_OK) == 0)
373 if (access(path, R_OK) == 0)
    [all...]
  /hardware/libhardware/
hardware.c 150 if (access(path, R_OK) == 0) break;
154 if (access(path, R_OK) == 0) break;
158 if (access(path, R_OK) == 0) break;
162 if (access(path, R_OK) == 0) break;
  /external/chromium_org/sandbox/linux/services/
broker_process_unittest.cc 129 ret = open_broker.Access(kR_WhiteListed, R_OK);
133 ret = open_broker.Access(kR_WhiteListed, R_OK | W_OK);
137 ret = open_broker.Access(kR_WhiteListed, R_OK | X_OK);
155 ret = open_broker.Access(kR_WhiteListedButDenied, R_OK);
159 ret = open_broker.Access(kR_WhiteListedButDenied, R_OK | W_OK);
163 ret = open_broker.Access(kR_WhiteListedButDenied, R_OK | X_OK);
175 ret = open_broker.Access(kW_WhiteListed, R_OK);
179 ret = open_broker.Access(kW_WhiteListed, R_OK | W_OK);
183 ret = open_broker.Access(kW_WhiteListed, R_OK | X_OK);
194 ret = open_broker.Access(kRW_WhiteListed, R_OK);
    [all...]
  /system/netd/
oem_iptables_hook.cpp 75 if (0 == access(OEM_SCRIPT_PATH, R_OK | X_OK)) {
  /external/chromium_org/third_party/WebKit/Source/core/platform/sql/chromium/
SQLiteFileSystemChromiumPosix.cpp 128 *res = (attr & W_OK) && (attr & R_OK);
131 *res = (attr & R_OK);
  /external/chromium_org/third_party/icu/source/tools/tzcode/
private.h 108 #include "unistd.h" /* for F_OK, R_OK, and other POSIX goodness */
114 #ifndef R_OK
115 #define R_OK 4
116 #endif /* !defined R_OK */
  /external/icu4c/tools/tzcode/
private.h 108 #include "unistd.h" /* for F_OK, R_OK, and other POSIX goodness */
114 #ifndef R_OK
115 #define R_OK 4
116 #endif /* !defined R_OK */
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/
fcntl.h 42 # ifndef R_OK /* Verbatim from <unistd.h>. Ugh. */
45 # define R_OK 4 /* Test for read permission. */
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/
fcntl.h 42 # ifndef R_OK /* Verbatim from <unistd.h>. Ugh. */
45 # define R_OK 4 /* Test for read permission. */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/
fcntl.h 42 # ifndef R_OK /* Verbatim from <unistd.h>. Ugh. */
45 # define R_OK 4 /* Test for read permission. */
  /frameworks/base/tools/aidl/
search_path.cpp 49 if (0 == access(f.c_str(), R_OK)) {
  /system/extras/tests/storage/
opentest.c 59 if (access(dir, R_OK | W_OK)) {
  /external/chromium_org/native_client_sdk/src/libraries/nacl_io_test/
mount_test.cc 61 EXPECT_EQ(ENOENT, mnt->Access(Path("/foo"), R_OK | W_OK));
76 EXPECT_EQ(0, mnt->Access(Path("/foo"), R_OK | W_OK));
80 EXPECT_EQ(0, mnt->Access(Path("/"), R_OK | W_OK));
214 ASSERT_EQ(0, mnt->Access(Path("/null"), R_OK | W_OK));
236 ASSERT_EQ(0, mnt->Access(Path("/zero"), R_OK | W_OK));
265 ASSERT_EQ(0, mnt->Access(Path("/urandom"), R_OK | W_OK));
310 ASSERT_EQ(0, mnt->Access(Path("/tty"), R_OK | W_OK));
  /external/chromium_org/third_party/libxml/src/
check-xinclude-test-suite.py 80 if os.access(URI, os.R_OK) == 0:
96 if os.access(output, os.R_OK) == 0:
  /external/chromium_org/webkit/browser/database/
vfs_backend.cc 151 if (!access(file_path.value().c_str(), R_OK))
152 attributes |= static_cast<uint32>(R_OK);
  /frameworks/native/libs/input/
InputDevice.cpp 96 if (!access(path.string(), R_OK)) {
111 if (!access(path.string(), R_OK)) {
  /external/chromium_org/third_party/sqlite/src/src/
test_demovfs.c 486 #ifndef R_OK
487 # define R_OK 4
507 || flags==SQLITE_ACCESS_READ /* access(zPath, R_OK) */
508 || flags==SQLITE_ACCESS_READWRITE /* access(zPath, R_OK|W_OK) */
511 if( flags==SQLITE_ACCESS_READWRITE ) eAccess = R_OK|W_OK;
512 if( flags==SQLITE_ACCESS_READ ) eAccess = R_OK;
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/lib/gcc/i686-linux/4.4.3/include-fixed/X11/
Xw32defs.h 88 #define R_OK 4
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/X11/
Xw32defs.h 79 #define R_OK 4
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/lib/gcc/i686-linux/4.6.x-google/include-fixed/X11/
Xw32defs.h 88 #define R_OK 4
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/X11/
Xw32defs.h 79 #define R_OK 4
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/lib/gcc/x86_64-linux/4.6.x-google/include-fixed/X11/
Xw32defs.h 88 #define R_OK 4

Completed in 901 milliseconds

1 2 3 4 5 6 7 8