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

1 2 3 4 5 6 78 91011>>

  /prebuilts/ndk/current/platforms/android-24/arch-arm64/usr/include/
unistd.h 193 #define TEMP_FAILURE_RETRY(exp) ({ \
  /prebuilts/ndk/current/platforms/android-24/arch-mips/usr/include/
unistd.h 193 #define TEMP_FAILURE_RETRY(exp) ({ \
  /prebuilts/ndk/current/platforms/android-24/arch-mips64/usr/include/
unistd.h 193 #define TEMP_FAILURE_RETRY(exp) ({ \
  /prebuilts/ndk/current/platforms/android-24/arch-x86/usr/include/
unistd.h 193 #define TEMP_FAILURE_RETRY(exp) ({ \
  /prebuilts/ndk/current/platforms/android-24/arch-x86_64/usr/include/
unistd.h 193 #define TEMP_FAILURE_RETRY(exp) ({ \
  /prebuilts/ndk/current/platforms/android-3/arch-arm/usr/include/
unistd.h 199 #define TEMP_FAILURE_RETRY(exp) ({ \
  /prebuilts/ndk/current/platforms/android-4/arch-arm/usr/include/
unistd.h 199 #define TEMP_FAILURE_RETRY(exp) ({ \
  /prebuilts/ndk/current/platforms/android-5/arch-arm/usr/include/
unistd.h 199 #define TEMP_FAILURE_RETRY(exp) ({ \
  /prebuilts/ndk/current/platforms/android-8/arch-arm/usr/include/
unistd.h 200 #define TEMP_FAILURE_RETRY(exp) ({ \
  /prebuilts/ndk/current/platforms/android-9/arch-arm/usr/include/
unistd.h 203 #define TEMP_FAILURE_RETRY(exp) ({ \
  /prebuilts/ndk/current/platforms/android-9/arch-mips/usr/include/
unistd.h 203 #define TEMP_FAILURE_RETRY(exp) ({ \
  /prebuilts/ndk/current/platforms/android-9/arch-x86/usr/include/
unistd.h 203 #define TEMP_FAILURE_RETRY(exp) ({ \
  /system/core/adb/
adb_utils.cpp 60 if (TEMP_FAILURE_RETRY(dup2(fd, STDIN_FILENO)) == -1) {
framebuffer_service.cpp 182 TEMP_FAILURE_RETRY(waitpid(pid, NULL, 0));
  /system/core/liblog/
pmsg_reader.c 172 ret = TEMP_FAILURE_RETRY(read(transp->context.fd,
205 ret = TEMP_FAILURE_RETRY(read(transp->context.fd,
234 current = TEMP_FAILURE_RETRY(lseek(transp->context.fd,
239 next = TEMP_FAILURE_RETRY(lseek(transp->context.fd,
  /system/core/libsysutils/src/
FrameworkListener.cpp 59 len = TEMP_FAILURE_RETRY(read(c->getSocket(), buffer, sizeof(buffer)));
  /system/core/run-as/
run-as.c 199 if (TEMP_FAILURE_RETRY(chdir(info.dataDir)) < 0) {
  /system/netd/server/
FwmarkServer.cpp 69 int messageLength = TEMP_FAILURE_RETRY(recvmsg(client->getSocket(), &message, 0));
  /system/vold/
PrivateVolume.cpp 168 if (TEMP_FAILURE_RETRY(rmdir(mPath.c_str()))) {
Utils.cpp 90 if (TEMP_FAILURE_RETRY(unlink(cpath))) {
354 int fd = TEMP_FAILURE_RETRY(open("/dev/urandom", O_RDONLY | O_CLOEXEC | O_NOFOLLOW));
361 while ((n = TEMP_FAILURE_RETRY(read(fd, &buf[0], std::min(sizeof(buf), bytes)))) > 0) {
523 int fd = TEMP_FAILURE_RETRY(open(c_path, O_RDWR | O_CLOEXEC));
  /bootable/recovery/applypatch/
applypatch.cpp 377 if (TEMP_FAILURE_RETRY(lseek(fd, start, SEEK_SET)) == -1) {
385 ssize_t written = TEMP_FAILURE_RETRY(ota_write(fd, data+start, to_write));
410 if (TEMP_FAILURE_RETRY(ota_write(dc, "3\n", 2)) == -1) {
419 if (TEMP_FAILURE_RETRY(lseek(fd, 0, SEEK_SET)) == -1) {
435 TEMP_FAILURE_RETRY(ota_read(fd, buffer+so_far, to_read-so_far));
570 wrote = TEMP_FAILURE_RETRY(ota_write(fd, data+done, len-done));
    [all...]
  /frameworks/native/cmds/dumpstate/
dumpstate.cpp 112 int fd = TEMP_FAILURE_RETRY(open(data[i].name,
608 ssize_t bytes_read = TEMP_FAILURE_RETRY(read(fd, buffer.data(), sizeof(buffer)));
632 ScopedFd fd(TEMP_FAILURE_RETRY(open(entry_path.c_str(), O_RDONLY | O_NONBLOCK | O_CLOEXEC)));
788 int fd = TEMP_FAILURE_RETRY(open(anr_traces_path,
    [all...]
  /bionic/tests/
gtest_main.cpp 37 #ifndef TEMP_FAILURE_RETRY
40 #define TEMP_FAILURE_RETRY(exp) ({ \
720 ssize_t bytes_read = TEMP_FAILURE_RETRY(read(child_proc.child_read_fd, buf, sizeof(buf) - 1));
743 while ((result = TEMP_FAILURE_RETRY(waitpid(-1, &status, WNOHANG))) > 0) {
778 pid_t result = TEMP_FAILURE_RETRY(waitpid(pid, &exit_status, 0));
    [all...]
  /system/core/init/
builtins.cpp 157 TEMP_FAILURE_RETRY(umount2(entry->mnt_dir, MNT_DETACH));
172 TEMP_FAILURE_RETRY(kill(-1, SIGKILL));
188 int fd = TEMP_FAILURE_RETRY(open(entry->mnt_fsname, O_RDONLY | O_EXCL));
197 TEMP_FAILURE_RETRY(
522 int wp_ret = TEMP_FAILURE_RETRY(waitpid(pid, &status, 0));
    [all...]
  /art/runtime/jit/
offline_profiling_info.cc 143 int bytes_written = TEMP_FAILURE_RETRY(write(fd, buffer, byte_count));
316 return TEMP_FAILURE_RETRY(read(fd, buffer, 1));
350 int bytes_read = TEMP_FAILURE_RETRY(read(fd, buffer, byte_count));

Completed in 451 milliseconds

1 2 3 4 5 6 78 91011>>