Searched defs:HANDLE_EINTR (Results 1 - 8 of 8) sorted by relevance
/external/chromium_org/base/posix/ |
H A D | eintr_wrapper.h | 13 // Don't wrap close calls in HANDLE_EINTR. Use IGNORE_EINTR if the return 27 #define HANDLE_EINTR(x) ({ \ macro 37 #define HANDLE_EINTR(x) ({ \ macro 62 #define HANDLE_EINTR(x) (x) macro
|
/external/qemu/android/utils/ |
H A D | eintr_wrapper.h | 20 // Set EINTR_WRAPPER_DEBUG to 1 to force the debug version of HANDLE_EINTR 33 // HANDLE_EINTR() is a macro used to handle EINTR return values when 42 // int ret = HANDLE_EINTR(open("/some/file/path", O_RDONLY)); 57 # define HANDLE_EINTR(x) (x) macro 59 # define HANDLE_EINTR(x) \ 71 # define HANDLE_EINTR(x) \ 91 // in the HANDLE_EINTR() documentation. 106 // by HANDLE_EINTR() failed more than MAX_EINTR_LOOP_COUNT times.
|
/external/qemu/android/base/ |
H A D | EintrWrapper.h | 22 // Set EINTR_WRAPPER_DEBUG to 1 to force the debug version of HANDLE_EINTR 35 // HANDLE_EINTR() is a macro used to handle EINTR return values when 44 // int ret = HANDLE_EINTR(open("/some/file/path", O_RDONLY)); 59 # define HANDLE_EINTR(x) (x) macro 61 # define HANDLE_EINTR(x) \ 73 # define HANDLE_EINTR(x) \ 92 // in the HANDLE_EINTR() documentation.
|
/external/chromium_org/ppapi/tests/ |
H A D | test_broker.cc | 62 #define HANDLE_EINTR(x) ({ \ macro 94 ssize_t read = HANDLE_EINTR(::read(file, message + total_read, 115 ssize_t written = HANDLE_EINTR(::write(file, message + total_written,
|
/external/chromium_org/third_party/webrtc/modules/audio_device/android/ |
H A D | low_latency_event_posix.cc | 15 #define HANDLE_EINTR(x) ({ \ macro 85 ssize_t bytes_written = HANDLE_EINTR(write(handles_[kWriteHandle], buffer, 95 ssize_t bytes_read = HANDLE_EINTR(read(handles_[kReadHandle], buffer, bytes));
|
/external/chromium_org/sandbox/linux/suid/ |
H A D | sandbox.c | 44 #define HANDLE_EINTR(x) TEMP_FAILURE_RETRY(x) macro 214 HANDLE_EINTR(waitid(P_PID, child_pid, &reaped_child_info, WEXITED)); 254 if (HANDLE_EINTR(send(sync_fds[1], "C", 1, MSG_NOSIGNAL)) != 1) 273 if (HANDLE_EINTR(read(sync_fds[0], &should_continue, 1)) != 1)
|
/external/chromium_org/third_party/android_crazy_linker/src/src/ |
H A D | crazy_linker_util.h | 16 #define HANDLE_EINTR(expr) TEMP_FAILURE_RETRY(expr) macro
|
/external/compiler-rt/lib/sanitizer_common/ |
H A D | sanitizer_internal_defs.h | 306 #define HANDLE_EINTR(res, f) \ macro
|
Completed in 367 milliseconds