/bionic/linker/ |
linker_phdr.cpp | 191 ssize_t rc = TEMP_FAILURE_RETRY(pread64(fd_, &header_, sizeof(header_), file_offset_)); 877 ssize_t written = TEMP_FAILURE_RETRY(write(fd, reinterpret_cast<void*>(seg_page_start), size)); [all...] |
linker_main.cpp | 296 if (TEMP_FAILURE_RETRY(stat("/proc/self/exe", &file_stat)) != 0) {
|
/hardware/interfaces/camera/device/3.4/default/ |
ExternalCameraDevice.cpp | 703 TEMP_FAILURE_RETRY(ioctl(fd, VIDIOC_ENUM_FRAMEINTERVALS, &frameInterval)) == 0; 797 ret = TEMP_FAILURE_RETRY(ioctl(fd, VIDIOC_ENUM_FMT, &fmtdesc)); 811 for (; TEMP_FAILURE_RETRY(ioctl(fd, VIDIOC_ENUM_FRAMESIZES, &frameSize)) == 0; [all...] |
/art/dex2oat/ |
dex2oat_image_test.cc | 221 while (TEMP_FAILURE_RETRY(bytes_read = read(link[0], buffer, 128)) > 0) {
|
/bootable/recovery/ |
ui.cpp | 492 int connected = (TEMP_FAILURE_RETRY(read(fd, &buf, 1)) == 1) && (buf == 'C');
|
/frameworks/base/core/jni/ |
android_net_LocalSocketImpl.cpp | 205 ret = TEMP_FAILURE_RETRY(recvmsg(fd, &msg, MSG_NOSIGNAL | MSG_CMSG_CLOEXEC));
|
com_android_internal_os_Zygote.cpp | 408 if (TEMP_FAILURE_RETRY(mount(storageSource.string(), "/storage", 423 if (TEMP_FAILURE_RETRY(mount(userSource.string(), "/storage/self", [all...] |
/frameworks/base/libs/hwui/service/ |
GraphicsStatsService.cpp | 91 ret = TEMP_FAILURE_RETRY(write(mFd, buffer, size));
|
/hardware/qcom/wlan/cld80211-lib/ |
cld80211_lib.c | 110 TEMP_FAILURE_RETRY(write(ctx->exit_sockets[0], "E", 1));
|
/system/core/adb/ |
adb_auth_host.cpp | 352 ssize_t rc = TEMP_FAILURE_RETRY(unix_read(fd, buf, sizeof(buf)));
|
/system/core/adf/libadfhwc/ |
adfhwc.cpp | 299 if (TEMP_FAILURE_RETRY(poll(fds, dev->intf_fds.size(), -1)) < 0) {
|
/system/core/libunwindstack/ |
Memory.cpp | 212 android::base::unique_fd fd(TEMP_FAILURE_RETRY(open(file.c_str(), O_RDONLY | O_CLOEXEC)));
|
/system/extras/libfec/ |
fec_open.cpp | 546 f->fd = TEMP_FAILURE_RETRY(open(path, mode | O_CLOEXEC));
|
/system/core/init/ |
property_service.cpp | 312 int result = TEMP_FAILURE_RETRY(send(socket_, &value, sizeof(value), 0)); 378 int result = TEMP_FAILURE_RETRY(recv(socket_, data, bytes_left, MSG_DONTWAIT));
|
/system/security/keystore/ |
KeyStore.cpp | 743 int in = TEMP_FAILURE_RETRY(open(kMetaDataFile, O_RDONLY)); 757 TEMP_FAILURE_RETRY(open(tmpFileName, O_WRONLY | O_TRUNC | O_CREAT, S_IRUSR | S_IWUSR));
|
/bionic/tests/ |
dlext_test.cpp | 111 extinfo.library_fd = TEMP_FAILURE_RETRY(open(lib_path.c_str(), O_RDONLY | O_CLOEXEC)); 129 extinfo.library_fd = TEMP_FAILURE_RETRY(open(lib_path.c_str(), O_RDONLY | O_CLOEXEC)); 155 extinfo.library_fd = TEMP_FAILURE_RETRY(open(lib_path.c_str(), O_RDONLY | O_CLOEXEC)); 826 int tmpfd = TEMP_FAILURE_RETRY( 880 ASSERT_TRUE(TEMP_FAILURE_RETRY(fstatfs(memfd, &st)) == 0) << strerror(errno); [all...] |
spawn_test.cpp | 478 ASSERT_EQ(spawned_pid, TEMP_FAILURE_RETRY(waitpid(spawned_pid, nullptr, 0)));
|
/system/core/logcat/ |
logcat.cpp | 300 TEMP_FAILURE_RETRY(write(context->output_fd, buf, size)); [all...] |
/art/dexlayout/ |
dexlayout_test.cc | [all...] |
/art/patchoat/ |
patchoat_test.cc | 202 while (TEMP_FAILURE_RETRY(bytes_read = read(link[0], buffer, 128)) > 0) {
|
/art/runtime/jit/ |
profile_compilation_info.cc | 297 int bytes_written = TEMP_FAILURE_RETRY(write(fd, buffer, byte_count)); [all...] |
/bootable/recovery/uncrypt/ |
uncrypt.cpp | 142 if (TEMP_FAILURE_RETRY(lseek64(wfd, offset, SEEK_SET)) == -1) {
|
/external/elfutils/src/ |
strings.c | 528 ssize_t n = TEMP_FAILURE_RETRY (read (fd, buf + ntrailer,
|
/frameworks/native/cmds/installd/ |
otapreopt.cpp | 674 pid_t got_pid = TEMP_FAILURE_RETRY(waitpid(pid, &status, 0)); [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/ |
unistd.h | [all...] |