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

1 2 3

  /frameworks/base/services/jni/
com_android_server_BatteryService.cpp 257 if (access(path, R_OK) == 0)
262 if (access(path, R_OK) == 0)
267 if (access(path, R_OK) == 0)
270 if (access(path, R_OK) == 0)
273 if (access(path, R_OK) == 0)
276 if (access(path, R_OK) == 0)
280 if (access(path, R_OK) == 0) {
286 if (access(path, R_OK) == 0)
291 if (access(path, R_OK) == 0) {
295 if (access(path, R_OK) == 0
    [all...]
  /frameworks/base/libs/surfaceflinger/DisplayHardware/
DisplayHardwareBase.cpp 125 if (access(kSleepFileName, R_OK) || access(kWakeFileName, R_OK)) {
126 if (access(kOldSleepFileName, R_OK) || access(kOldWakeFileName, R_OK)) {
138 return (((access(kSleepFileName, R_OK) == 0 &&
139 access(kWakeFileName, R_OK) == 0) ||
140 (access(kOldSleepFileName, R_OK) == 0 &&
141 access(kOldWakeFileName, R_OK) == 0)) &&
  /bionic/libc/tzcode/
private.h 108 #include "unistd.h" /* for F_OK and R_OK */
115 #ifndef R_OK
116 #define R_OK 4
117 #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 */
  /external/webkit/WebCore/platform/sql/chromium/
SQLiteFileSystemChromiumPosix.cpp 131 *res = (attr & W_OK) && (attr & R_OK);
134 *res = (attr & R_OK);
  /system/core/libcutils/
private.h 112 #include "unistd.h" /* for F_OK and R_OK */
119 #ifndef R_OK
120 #define R_OK 4
121 #endif /* !defined R_OK */
  /frameworks/base/tools/aidl/
search_path.cpp 49 if (0 == access(f.c_str(), R_OK)) {
  /external/bluetooth/bluez/rfcomm/
parser.y 158 if ((getuid() == 0) || (access(file, R_OK) < 0))
  /external/webkit/WebKit/chromium/src/gtk/
WebFontInfo.cpp 90 if (access(reinterpret_cast<char*>(cFilename), R_OK))
  /hardware/libhardware/
hardware.c 146 if (access(path, R_OK)) {
  /prebuilt/linux-x86/toolchain/i686-unknown-linux-gnu-4.2.1/lib/gcc/i686-unknown-linux-gnu/4.2.1/include/X11/
Xw32defs.h 88 #define R_OK 4
  /development/simulator/app/
MyApp.cpp 387 if (access(mConfigFile.ToAscii(), R_OK) != 0) {
412 if (access(fileName.ToAscii(), R_OK) == 0) {
426 if (access(homeConfig.ToAscii(), R_OK) == 0) {
PhoneCollection.cpp 77 if (access(fileName, R_OK) == 0) {
  /external/qemu/android/utils/
path.c 256 CHECKED(ret, access(path, R_OK));
264 CHECKED(ret, access(path, R_OK));
461 if ( access(source, R_OK) < 0 ) {
timezone.c 320 if ( access( env, R_OK ) != 0 ) {
345 if ( access( localtime, R_OK ) != 0 ) {
349 if (p >= end || access( temp, R_OK ) != 0 ) {
  /external/oprofile/libutil/
op_file.c 29 return !stat(file, &st) && S_ISREG(st.st_mode) && !access(file, R_OK);
  /system/vold/
Volume.cpp 364 if (!access("/mnt/secure/staging/android_secure", R_OK | X_OK) &&
365 access(SEC_STG_SECIMGDIR, R_OK | X_OK)) {
374 if (access(SEC_STG_SECIMGDIR, R_OK | X_OK)) {
  /bionic/libc/include/
unistd.h 109 #define R_OK 4 /* Read */
  /ndk/build/platforms/android-3/arch-arm/usr/include/
unistd.h 105 #define R_OK 4 /* Read */
  /ndk/build/platforms/android-4/arch-arm/usr/include/
unistd.h 105 #define R_OK 4 /* Read */
  /ndk/build/platforms/android-5/arch-arm/usr/include/
unistd.h 105 #define R_OK 4 /* Read */
  /ndk/build/platforms/android-5/arch-x86/usr/include/
unistd.h 105 #define R_OK 4 /* Read */
  /ndk/build/platforms/android-8/arch-arm/usr/include/
unistd.h 109 #define R_OK 4 /* Read */
  /ndk/build/platforms/android-8/arch-x86/usr/include/
unistd.h 109 #define R_OK 4 /* Read */
  /external/blktrace/btreplay/
btrecord.c 344 if (access(full_name, R_OK) != 0)
399 if (access(idir, R_OK | X_OK) != 0) {
408 if (access(odir, R_OK | X_OK) != 0) {

Completed in 1227 milliseconds

1 2 3