HomeSort by relevance Sort by last modified time
    Searched refs:TEMP_FAILURE_RETRY (Results 251 - 275 of 279) sorted by null

<<1112

  /device/google/dragon/sensor_hub/
sensors.cpp 655 TEMP_FAILURE_RETRY(n = poll(mPollFds, numFds,
  /device/htc/flounder/sensor_hub/libsensors/
sensors.cpp 722 TEMP_FAILURE_RETRY(n = poll(mPollFds, numFds, nbEvents ? 0 : -1));
  /external/elfutils/src/
strings.c 528 ssize_t n = TEMP_FAILURE_RETRY (read (fd, buf + ntrailer,
ar.c 653 while ((n = TEMP_FAILURE_RETRY (write (xfd, data, nleft))) != -1)
    [all...]
  /frameworks/av/cmds/screenrecord/
screenrecord.cpp 769 pid_t actualPid = TEMP_FAILURE_RETRY(waitpid(pid, &status, 0));
    [all...]
  /frameworks/base/core/jni/
android_hardware_camera2_CameraMetadata.cpp 458 while ((res = TEMP_FAILURE_RETRY(read(readFd, &out[0], /*count*/1))) > 0) {
  /frameworks/native/cmds/installd/
otapreopt.cpp 634 pid_t got_pid = TEMP_FAILURE_RETRY(waitpid(pid, &status, 0));
commands.cpp     [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/
unistd.h     [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/
unistd.h     [all...]
  /system/core/healthd/
BatteryMonitor.cpp 138 ssize_t count = TEMP_FAILURE_RETRY(read(fd, buf, size));
  /system/core/logd/tests/
logd_test.cpp 352 int result = TEMP_FAILURE_RETRY(read(fd, msg.buf, sizeof(msg)));
  /art/runtime/base/
mutex.cc 378 // We don't use TEMP_FAILURE_RETRY so we can intentionally retry to acquire the lock.
565 // We don't use TEMP_FAILURE_RETRY so we can intentionally retry to acquire the lock.
646 // We don't use TEMP_FAILURE_RETRY so we can recompute rel_ts;
    [all...]
  /system/core/init/
service.cpp 777 pid_t pid = TEMP_FAILURE_RETRY(waitpid(-1, &status, WNOHANG));
  /system/core/logcat/
logcat.cpp 151 TEMP_FAILURE_RETRY(write(g_outFD, buf, size));
    [all...]
  /system/extras/simpleperf/
cmd_record.cpp 756 if (TEMP_FAILURE_RETRY(uname(&uname_buf)) != 0) {
  /art/dex2oat/
dex2oat.cc 463 int rc = TEMP_FAILURE_RETRY(pthread_cond_timedwait(&cond_, &mutex_, &timeout_ts));
    [all...]
  /frameworks/native/libs/binder/
Parcel.cpp 112 int fd = TEMP_FAILURE_RETRY(open("/dev/ashmem", O_RDONLY));
116 int ret = TEMP_FAILURE_RETRY(fstat(fd, &st));
    [all...]
  /system/vold/
cryptfs.c 665 return TEMP_FAILURE_RETRY(read(fd, buff, len));
670 return TEMP_FAILURE_RETRY(write(fd, buff, len));
    [all...]
  /external/elfutils/libdwfl/
dwfl_module_getdwarf.c 49 *fd = TEMP_FAILURE_RETRY (open (*name, O_RDONLY));
    [all...]
  /hardware/qcom/wlan/qcwcn/wifi_hal/
wifi_hal.cpp 665 TEMP_FAILURE_RETRY(write(info->exit_sockets[0], "E", 1));
    [all...]
  /art/runtime/gc/space/
image_space.cc 345 int res = TEMP_FAILURE_RETRY(statvfs(cache_filename.c_str(), &buf));
    [all...]
  /bionic/libc/dns/net/
gethnamaddr.c 584 if (TEMP_FAILURE_RETRY(connect(s, (const struct sockaddr*) &proxy_addr, sizeof(proxy_addr))) != 0) {
    [all...]
  /bootable/recovery/
recovery.cpp 887 unique_fd fd(TEMP_FAILURE_RETRY(open(partition.c_str(), O_WRONLY)));
    [all...]
  /bootable/recovery/updater/
install.cpp 564 int fd = TEMP_FAILURE_RETRY(ota_open(dest_path, O_WRONLY | O_CREAT | O_TRUNC | O_SYNC,
    [all...]

Completed in 1475 milliseconds

<<1112