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

1 2 3 4 5 6 7 8 9

  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/
osunistd.h 10 #define R_OK 4
  /external/strace/xlat/
access_flags.h 7 #if defined(R_OK) || (defined(HAVE_DECL_R_OK) && HAVE_DECL_R_OK)
8 XLAT(R_OK),
  /external/qemu/
kvm-android.c 35 if (access(kvm_device,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) {
  /external/ltrace/testsuite/ltrace.minor/
count-record.c 44 access ("system_calls.tmp", R_OK);
  /system/core/healthd/
BatteryMonitor.cpp 402 if (access(path.string(), R_OK) == 0)
413 if (access(path, R_OK) == 0)
421 if (access(path, R_OK) == 0)
429 if (access(path, R_OK) == 0)
437 if (access(path, R_OK) == 0)
445 if (access(path, R_OK) == 0) {
451 if (access(path, R_OK) == 0)
460 if (access(path, R_OK) == 0)
468 if (access(path, R_OK) == 0)
476 if (access(path, R_OK) == 0
    [all...]
  /external/chromium_org/third_party/hwcplus/src/
hardware.c 148 if (access(path, R_OK) == 0)
154 if (access(path, R_OK) == 0)
159 if (access(path, R_OK) == 0)
  /external/chromium_org/native_client_sdk/src/tests/nacl_io_test/
filesystem_test.cc 51 EXPECT_EQ(ENOENT, fs.Access(Path("/foo"), R_OK | W_OK));
64 EXPECT_EQ(0, fs.Access(Path("/foo"), R_OK | W_OK));
68 EXPECT_EQ(0, fs.Access(Path("/"), R_OK | W_OK | X_OK));
216 ASSERT_EQ(0, fs.Access(Path("/dir1/file"), R_OK));
221 ASSERT_NE(0, fs.Access(Path("/dir1/file"), R_OK));
222 ASSERT_EQ(0, fs.Access(Path("/dir2/new_file"), R_OK));
227 ASSERT_NE(0, fs.Access(Path("/dir2/new_file"), R_OK));
228 ASSERT_EQ(0, fs.Access(Path("/dir2/new_file2"), R_OK));
233 ASSERT_NE(0, fs.Access(Path("/dir2/new_file2"), R_OK));
234 ASSERT_EQ(0, fs.Access(Path("/dir1/new_file2"), R_OK));
    [all...]
  /external/chromium_org/sandbox/linux/services/
broker_process_unittest.cc 138 ret = open_broker.Access(kR_WhiteListed, R_OK);
142 ret = open_broker.Access(kR_WhiteListed, R_OK | W_OK);
146 ret = open_broker.Access(kR_WhiteListed, R_OK | X_OK);
164 ret = open_broker.Access(kR_WhiteListedButDenied, R_OK);
168 ret = open_broker.Access(kR_WhiteListedButDenied, R_OK | W_OK);
172 ret = open_broker.Access(kR_WhiteListedButDenied, R_OK | X_OK);
184 ret = open_broker.Access(kW_WhiteListed, R_OK);
188 ret = open_broker.Access(kW_WhiteListed, R_OK | W_OK);
192 ret = open_broker.Access(kW_WhiteListed, R_OK | X_OK);
203 ret = open_broker.Access(kRW_WhiteListed, R_OK);
    [all...]
  /system/netd/server/
oem_iptables_hook.cpp 75 if (0 == access(OEM_SCRIPT_PATH, R_OK | X_OK)) {
  /external/chromium_org/third_party/WebKit/Source/modules/webdatabase/sqlite/
SQLiteFileSystemPosix.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/icu/icu4c/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 */
  /frameworks/base/cmds/idmap/
idmap.cpp 101 return access(path, R_OK | X_OK) == 0;
111 return access(path, R_OK) == 0;
  /hardware/libhardware/
hardware.c 134 if (access(path, R_OK) == 0)
139 if (access(path, R_OK) == 0)
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-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.11-4.8/sysroot/usr/include/
fcntl.h 42 # ifndef R_OK /* Verbatim from <unistd.h>. Ugh. */
45 # define R_OK 4 /* Test for read permission. */
  /external/chromium_org/tools/telemetry/telemetry/util/
support_binaries.py 29 required_mode = os.R_OK
  /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/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 142 if (!access(file_path.value().c_str(), R_OK))
143 attributes |= static_cast<uint32>(R_OK);
  /external/qemu/android/emulation/
CpuAccelerator.cpp 91 if (::access("/dev/kvm", R_OK)) {
244 if (::access("/dev/HAX", 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;

Completed in 613 milliseconds

1 2 3 4 5 6 7 8 9