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

1 2 3

  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/
osunistd.h 10 #define R_OK 4
  /external/ltrace/testsuite/ltrace.minor/
count-record.c 44 access ("system_calls.tmp", R_OK);
  /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/sandbox/linux/services/
broker_process_unittest.cc 107 ret = open_broker.Access(kR_WhiteListed, R_OK);
111 ret = open_broker.Access(kR_WhiteListed, R_OK | W_OK);
115 ret = open_broker.Access(kR_WhiteListed, R_OK | X_OK);
133 ret = open_broker.Access(kR_WhiteListedButDenied, R_OK);
137 ret = open_broker.Access(kR_WhiteListedButDenied, R_OK | W_OK);
141 ret = open_broker.Access(kR_WhiteListedButDenied, R_OK | X_OK);
153 ret = open_broker.Access(kW_WhiteListed, R_OK);
157 ret = open_broker.Access(kW_WhiteListed, R_OK | W_OK);
161 ret = open_broker.Access(kW_WhiteListed, R_OK | X_OK);
172 ret = open_broker.Access(kRW_WhiteListed, R_OK);
    [all...]
broker_process.cc 483 requested_mode & ~(R_OK | W_OK)) {
493 case R_OK:
499 case R_OK | W_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 */
  /external/chromium_org/storage/browser/database/
vfs_backend.cc 142 if (!access(file_path.value().c_str(), R_OK))
143 attributes |= static_cast<uint32>(R_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/third_party/skia/src/ports/
SkOSFile_posix.cpp 21 mode |= 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;
  /external/chromium_org/tools/telemetry/telemetry/util/
support_binaries.py 30 required_mode = os.R_OK
  /external/oprofile/libutil/
op_file.c 29 return !stat(file, &st) && S_ISREG(st.st_mode) && !access(file, R_OK);
  /bionic/libc/tzcode/
private.h 104 #include "unistd.h" /* for F_OK, R_OK, and other POSIX goodness */
110 #ifndef R_OK
111 #define R_OK 4
112 #endif /* !defined R_OK */
  /device/asus/flo/conn_init/
wfc_util_qcom.c 347 F_OK|R_OK|W_OK)) {
412 F_OK|R_OK|W_OK)) {
  /device/lge/mako/conn_init/
wfc_util_qcom.c 345 F_OK|R_OK|W_OK)) {
410 F_OK|R_OK|W_OK)) {
  /external/ltrace/testsuite/ltrace.main/
system_calls.exp 61 access ("system_calls.tmp", R_OK);
  /bionic/libc/include/
unistd.h 100 #define R_OK 4 /* Read */
  /development/ndk/platforms/android-12/include/
unistd.h 104 #define R_OK 4 /* Read */
  /development/ndk/platforms/android-3/include/
unistd.h 100 #define R_OK 4 /* Read */
  /development/ndk/platforms/android-8/include/
unistd.h 104 #define R_OK 4 /* Read */
  /development/ndk/platforms/android-9/include/
unistd.h 104 #define R_OK 4 /* Read */
  /development/ndk/platforms/android-L/include/
unistd.h 103 #define R_OK 4 /* Read */
  /external/chromium_org/third_party/tcmalloc/chromium/src/
symbolize.cc 127 if (access(FLAGS_symbolize_pprof, R_OK) != 0) {

Completed in 589 milliseconds

1 2 3