HomeSort by relevance Sort by last modified time
    Searched refs:TEMP_FAILURE_RETRY (Results 176 - 200 of 204) sorted by null

1 2 3 4 5 6 78 9

  /system/core/libnativebridge/
native_bridge.cc 288 if (TEMP_FAILURE_RETRY(mount(cpuinfo_path, // Source.
  /art/runtime/gc/space/
image_space.cc 112 if (TEMP_FAILURE_RETRY(unlink(cache_file.c_str())) != 0) {
117 CHECK_EQ(0, TEMP_FAILURE_RETRY(closedir(cache_dir))) << "Unable to close directory.";
412 int res = TEMP_FAILURE_RETRY(statvfs(cache_filename.c_str(), &buf));
    [all...]
  /bionic/libc/tzcode/
localtime.c     [all...]
  /bionic/linker/
linker.cpp 737 int fd = TEMP_FAILURE_RETRY(open(buf, O_RDONLY | O_CLOEXEC));
750 int fd = TEMP_FAILURE_RETRY(open(name, O_RDONLY | O_CLOEXEC));
804 if (TEMP_FAILURE_RETRY(fstat(fd, &file_stat)) != 0) {
    [all...]
  /system/core/healthd/
BatteryMonitor.cpp 110 ssize_t count = TEMP_FAILURE_RETRY(read(fd, buf, size));
  /system/core/logd/tests/
logd_test.cpp 487 int result = TEMP_FAILURE_RETRY(read(fd, msg.buf, sizeof(msg)));
  /system/core/logwrapper/
logwrap.c 351 if (TEMP_FAILURE_RETRY(poll(poll_fds, ARRAY_SIZE(poll_fds), -1)) < 0) {
  /device/htc/flounder/sensor_hub/libsensors/
sensors.cpp 722 TEMP_FAILURE_RETRY(n = poll(mPollFds, numFds, nbEvents ? 0 : -1));
  /external/elfutils/0.153/src/
strings.c 527 ssize_t n = TEMP_FAILURE_RETRY (read (fd, buf + ntrailer,
  /frameworks/av/cmds/screenrecord/
screenrecord.cpp 758 pid_t actualPid = TEMP_FAILURE_RETRY(waitpid(pid, &status, 0));
    [all...]
  /frameworks/base/core/jni/
android_hardware_camera2_CameraMetadata.cpp 442 while ((res = TEMP_FAILURE_RETRY(read(readFd, &out[0], /*count*/1))) > 0) {
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/
unistd.h     [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/
unistd.h     [all...]
  /system/core/init/
builtins.c 519 int wp_ret = TEMP_FAILURE_RETRY(waitpid(pid, &status, 0));
  /system/core/liblog/
log_read_kern.c 562 result = TEMP_FAILURE_RETRY(
  /system/core/logcat/
logcat.cpp 119 TEMP_FAILURE_RETRY(write(g_outFD, buf, size));
  /art/runtime/
utils.cc 121 int64_t n = TEMP_FAILURE_RETRY(read(file->Fd(), &buf[0], buf.size()));
    [all...]
dex_file.cc 60 int n = TEMP_FAILURE_RETRY(read(fd.get(), magic, sizeof(*magic)));
    [all...]
  /art/dex2oat/
dex2oat.cc 697 int rc = TEMP_FAILURE_RETRY(pthread_cond_timedwait(&cond_, &mutex_, &timeout_ts));
    [all...]
  /frameworks/base/libs/androidfw/
AssetManager.cpp 47 #ifndef TEMP_FAILURE_RETRY
49 #define TEMP_FAILURE_RETRY(exp) ({ \
    [all...]
  /art/runtime/base/
mutex.cc 332 // We don't use TEMP_FAILURE_RETRY so we can intentionally retry to acquire the lock.
508 // We don't use TEMP_FAILURE_RETRY so we can intentionally retry to acquire the lock.
589 // We don't use TEMP_FAILURE_RETRY so we can recompute rel_ts;
836 int rc = TEMP_FAILURE_RETRY(pthread_cond_timedwait(&cond_, &guard_.mutex_, &ts));
    [all...]
  /external/elfutils/0.153/libdwfl/
dwfl_module_getdwarf.c 71 file->fd = TEMP_FAILURE_RETRY (open64 (file->name, O_RDONLY));
  /system/vold/
cryptfs.c 535 return TEMP_FAILURE_RETRY(read(fd, buff, len));
540 return TEMP_FAILURE_RETRY(write(fd, buff, len));
    [all...]
  /art/patchoat/
patchoat.cc 419 TEMP_FAILURE_RETRY(unlink(output_oat_filename.c_str()));
    [all...]
  /bionic/libc/dns/
gethnamaddr.c 551 if (TEMP_FAILURE_RETRY(connect(sock,
    [all...]

Completed in 2116 milliseconds

1 2 3 4 5 6 78 9