HomeSort by relevance Sort by last modified time
    Searched defs:TEMP_FAILURE_RETRY (Results 1 - 9 of 9) sorted by null

  /frameworks/base/cmds/idmap/
idmap.h 13 #ifndef TEMP_FAILURE_RETRY
15 #define TEMP_FAILURE_RETRY(exp) ({ \
  /external/honggfuzz/libhfcommon/
common.h 44 /* TEMP_FAILURE_RETRY, but for all OSes */
45 #ifndef TEMP_FAILURE_RETRY
46 #define TEMP_FAILURE_RETRY(exp) \
54 #endif /* ifndef TEMP_FAILURE_RETRY */
  /device/generic/goldfish/libqemu/
test_host_2.c 35 #undef TEMP_FAILURE_RETRY
36 #define TEMP_FAILURE_RETRY(exp) ({ \
43 #define TFR TEMP_FAILURE_RETRY
test_host_1.c 37 #undef TEMP_FAILURE_RETRY
38 #define TEMP_FAILURE_RETRY(exp) ({ \
45 #define TFR TEMP_FAILURE_RETRY
  /device/generic/goldfish-opengl/shared/OpenglCodecCommon/
qemu_pipe.h 48 #ifndef TEMP_FAILURE_RETRY
49 #define TEMP_FAILURE_RETRY(exp) ({ \
83 ssize_t n = TEMP_FAILURE_RETRY(write(fd, p, remaining));
126 fd = TEMP_FAILURE_RETRY(open(QEMU_PIPE_PATH, O_RDWR));
128 fd = TEMP_FAILURE_RETRY(open("/dev/goldfish_pipe", O_RDWR));
  /external/elfutils/lib/
system.h 79 #ifndef TEMP_FAILURE_RETRY
80 #define TEMP_FAILURE_RETRY(expression) \
95 ssize_t ret = TEMP_FAILURE_RETRY (pwrite (fd, buf + recvd, len - recvd,
114 ssize_t ret = TEMP_FAILURE_RETRY (write (fd, buf + recvd, len - recvd));
132 ssize_t ret = TEMP_FAILURE_RETRY (pread (fd, buf + recvd, len - recvd,
  /dalvik/libdex/
SysUtil.cpp 34 * TEMP_FAILURE_RETRY is defined by some, but not all, versions of
38 #ifndef TEMP_FAILURE_RETRY
40 #define TEMP_FAILURE_RETRY(exp) ({ \
331 ssize_t actual = TEMP_FAILURE_RETRY(write(fd, buf, count));
356 ssize_t actual = TEMP_FAILURE_RETRY(read(inFd, buf, getSize));
  /bionic/libc/include/
unistd.h 308 #define TEMP_FAILURE_RETRY(exp) ({ \
  /build/make/tools/makeparallel/
makeparallel.cpp 45 #define TEMP_FAILURE_RETRY(exp) (exp)
247 while ((ret = TEMP_FAILURE_RETRY(poll(pollfds, 1, 0))) != 0) {
279 int ret = TEMP_FAILURE_RETRY(write(out_fd, &buf, 1));

Completed in 308 milliseconds