Searched refs:R_OK (Results 1 - 25 of 67) sorted by relevance

123

/external/chromium_org/native_client_sdk/src/libraries/nacl_io/
H A Dosunistd.h10 #define R_OK 4 macro
/external/strace/xlat/
H A Daccess_flags.h7 #if defined(R_OK) || (defined(HAVE_DECL_R_OK) && HAVE_DECL_R_OK)
8 XLAT(R_OK),
/external/qemu/
H A Dkvm-android.c35 if (access(kvm_device,R_OK)) {
H A Dos-win32.c97 if (access(buf, R_OK) == 0) {
H A Dos-posix.c140 if (access(res, R_OK)) {
142 if (access(res, R_OK)) {
/external/ltrace/testsuite/ltrace.minor/
H A Dcount-record.c44 access ("system_calls.tmp", R_OK);
/external/chromium_org/third_party/hwcplus/src/
H A Dhardware.c148 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/
H A Dbroker_process_unittest.cc107 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...]
H A Dbroker_process.cc483 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/
H A DSQLiteFileSystemPosix.cpp128 *res = (attr & W_OK) && (attr & R_OK);
131 *res = (attr & R_OK);
/external/chromium_org/third_party/icu/source/tools/tzcode/
H A Dprivate.h108 #include "unistd.h" /* for F_OK, R_OK, and other POSIX goodness */
114 #ifndef R_OK
115 #define R_OK 4 macro
116 #endif /* !defined R_OK */
/external/icu/icu4c/source/tools/tzcode/
H A Dprivate.h108 #include "unistd.h" /* for F_OK, R_OK, and other POSIX goodness */
114 #ifndef R_OK
115 #define R_OK 4 macro
116 #endif /* !defined R_OK */
/external/chromium_org/tools/telemetry/telemetry/util/
H A Dsupport_binaries.py30 required_mode = os.R_OK
/external/chromium_org/storage/browser/database/
H A Dvfs_backend.cc142 if (!access(file_path.value().c_str(), R_OK))
143 attributes |= static_cast<uint32>(R_OK);
/external/chromium_org/third_party/libxml/src/
H A Dcheck-xinclude-test-suite.py80 if os.access(URI, os.R_OK) == 0:
96 if os.access(output, os.R_OK) == 0:
/external/qemu/android/emulation/
H A DCpuAccelerator.cpp91 if (::access("/dev/kvm", R_OK)) {
244 if (::access("/dev/HAX", R_OK)) {
/external/chromium_org/third_party/skia/src/ports/
H A DSkOSFile_posix.cpp21 mode |= R_OK;
/external/chromium_org/third_party/sqlite/src/src/
H A Dtest_demovfs.c486 #ifndef R_OK
487 # define R_OK 4 macro
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/qemu/android/utils/
H A Dtimezone.c321 if ( access( env, R_OK ) != 0 ) {
346 if ( access( localtime, R_OK ) != 0 ) {
350 if (p >= end || access( temp, R_OK ) != 0 ) {
/external/valgrind/main/coregrind/
H A Dlauncher-darwin.c122 if (access(fullname, R_OK|X_OK) == 0)
288 if (access(vgpreload_core, R_OK|X_OK) != 0) {
411 if (access(toolfile, R_OK|X_OK) != 0) {
/external/oprofile/libutil/
H A Dop_file.c29 return !stat(file, &st) && S_ISREG(st.st_mode) && !access(file, R_OK);
/external/ltrace/testsuite/ltrace.main/
H A Dsystem_calls.exp61 access ("system_calls.tmp", R_OK);
/external/chromium_org/third_party/tcmalloc/chromium/src/
H A Dsymbolize.cc127 if (access(FLAGS_symbolize_pprof, R_OK) != 0) {
/external/chromium_org/third_party/tcmalloc/vendor/src/
H A Dsymbolize.cc132 if (access(g_pprof_path->c_str(), R_OK) != 0) {
/external/libcap-ng/libcap-ng-0.7/utils/
H A Dcaptest.c178 if (access("/etc/shadow", R_OK) == 0)

Completed in 639 milliseconds

123