Searched defs:IGNORE_EINTR (Results 1 - 5 of 5) sorted by relevance

/external/chromium_org/base/posix/
H A Deintr_wrapper.h13 // Don't wrap close calls in HANDLE_EINTR. Use IGNORE_EINTR if the return
49 #define IGNORE_EINTR(x) ({ \ macro
63 #define IGNORE_EINTR(x) (x) macro
/external/qemu/android/utils/
H A Deintr_wrapper.h44 // IMPORTANT: Do not use with the close() system call (use IGNORE_EINTR()
88 // IGNORE_EINTR() is a macro used to perform a system call and ignore
93 # define IGNORE_EINTR(x) (x) macro
95 # define IGNORE_EINTR(x) \
/external/qemu/android/base/
H A DEintrWrapper.h46 // IMPORTANT: Do not use with the close() system call (use IGNORE_EINTR()
89 // IGNORE_EINTR() is a macro used to perform a system call and ignore
94 # define IGNORE_EINTR(x) (x) macro
96 # define IGNORE_EINTR(x) \
/external/chromium_org/ppapi/tests/
H A Dtest_broker.cc70 #define IGNORE_EINTR(x) ({ \ macro
137 return !IGNORE_EINTR(::close(file));
163 if (IGNORE_EINTR(::close(fd))) {
/external/chromium_org/third_party/webrtc/modules/audio_device/android/
H A Dlow_latency_event_posix.cc23 #define IGNORE_EINTR(x) ({ \ macro
75 int retval = IGNORE_EINTR(close(*handle));

Completed in 3335 milliseconds