/system/connectivity/wificond/net/ |
netlink_manager.cpp | 391 TEMP_FAILURE_RETRY(send(fd, data.data(), data.size(), 0));
|
/system/core/adb/ |
shell_service.cpp | 342 TEMP_FAILURE_RETRY(
|
/system/core/liblog/ |
logger_write.c | 541 TEMP_FAILURE_RETRY(writev(2, iov, 2));
|
/system/core/libusbhost/ |
usbhost.c | 759 int res = TEMP_FAILURE_RETRY(ioctl(dev->fd, timeoutMillis == -1 ? USBDEVFS_REAPURB :
|
/system/core/libziparchive/ |
zip_archive.cc | 38 #include <android-base/macros.h> // TEMP_FAILURE_RETRY may or may not be in unistd 808 result = TEMP_FAILURE_RETRY(fallocate(fd, 0, current_offset, declared_length)); 826 result = TEMP_FAILURE_RETRY(ftruncate(fd, declared_length + current_offset)); [all...] |
/bionic/linker/ |
linker.cpp | 919 int fd = TEMP_FAILURE_RETRY(open(zip_path, O_RDONLY | O_CLOEXEC)); 971 int fd = TEMP_FAILURE_RETRY(open(zip_path, O_RDONLY | O_CLOEXEC)); 1036 fd = TEMP_FAILURE_RETRY(open(buf, O_RDONLY | O_CLOEXEC)); 1069 fd = TEMP_FAILURE_RETRY(open(name, O_RDONLY | O_CLOEXEC)); [all...] |
/system/vold/ |
cryptfs.cpp | 575 return TEMP_FAILURE_RETRY(read(fd, buff, len)); 580 return TEMP_FAILURE_RETRY(write(fd, buff, len)); [all...] |
/frameworks/av/cmds/screenrecord/ |
screenrecord.cpp | 806 pid_t actualPid = TEMP_FAILURE_RETRY(waitpid(pid, &status, 0)); [all...] |
/frameworks/base/core/jni/ |
android_hardware_camera2_CameraMetadata.cpp | 464 while ((res = TEMP_FAILURE_RETRY(read(readFd, &out[0], /*count*/1))) > 0) {
|
/frameworks/native/cmds/atrace/ |
atrace.cpp | [all...] |
/art/dex2oat/ |
dex2oat.cc | 584 int rc = TEMP_FAILURE_RETRY(pthread_cond_timedwait(&cond_, &mutex_, &timeout_ts)); [all...] |
/bionic/libc/malloc_debug/tests/ |
malloc_debug_unit_tests.cpp | [all...] |
/art/runtime/base/ |
mutex.cc | 452 // We don't use TEMP_FAILURE_RETRY so we can intentionally retry to acquire the lock. 653 // We don't use TEMP_FAILURE_RETRY so we can intentionally retry to acquire the lock. 737 // We don't use TEMP_FAILURE_RETRY so we can recompute rel_ts; [all...] |
/bootable/recovery/ |
recovery.cpp | 820 android::base::unique_fd fd(TEMP_FAILURE_RETRY(open(partition.c_str(), O_WRONLY))); [all...] |
/bootable/recovery/updater/ |
install.cpp | 140 unique_fd fd(TEMP_FAILURE_RETRY( [all...] |
/external/elfutils/libdwfl/ |
dwfl_module_getdwarf.c | 49 *fd = TEMP_FAILURE_RETRY (open (*name, O_RDONLY)); [all...] |
/external/elfutils/src/ |
ar.c | 653 while ((n = TEMP_FAILURE_RETRY (write (xfd, data, nleft))) != -1) [all...] |
/frameworks/native/cmds/dumpstate/tests/ |
dumpstate_test.cpp | 873 fd = TEMP_FAILURE_RETRY(open(path_.c_str(), [all...] |
/libcore/luni/src/main/native/ |
libcore_icu_ICU.cpp | [all...] |
/system/extras/simpleperf/ |
cmd_record.cpp | [all...] |
/art/runtime/gc/space/ |
image_space.cc | [all...] |
/art/runtime/ |
oat_file.cc | 296 int rc = TEMP_FAILURE_RETRY(fstat(vdex_fd, &s)); [all...] |
/bionic/libc/dns/net/ |
gethnamaddr.c | 588 if (TEMP_FAILURE_RETRY(connect(s, (const struct sockaddr*) &proxy_addr, sizeof(proxy_addr))) != 0) { [all...] |
/bionic/libc/tzcode/ |
localtime.c | 428 nread = TEMP_FAILURE_RETRY(read(fid, up->buf, entry_length)); [all...] |
/hardware/qcom/wlan/qcwcn/wifi_hal/ |
wifi_hal.cpp | 832 TEMP_FAILURE_RETRY(write(info->exit_sockets[0], "E", 1)); [all...] |