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

  /external/chromium_org/base/posix/
eintr_wrapper.h 13 // Don't wrap close calls in HANDLE_EINTR. Use IGNORE_EINTR if the return
49 #define IGNORE_EINTR(x) ({ \
63 #define IGNORE_EINTR(x) (x)
  /external/qemu/android/utils/
eintr_wrapper.h 44 // 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)
95 # define IGNORE_EINTR(x) \
  /external/qemu/android/base/
EintrWrapper.h 46 // 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)
96 # define IGNORE_EINTR(x) \
  /external/chromium_org/ppapi/tests/
test_broker.cc 70 #define IGNORE_EINTR(x) ({ \
137 return !IGNORE_EINTR(::close(file));
163 if (IGNORE_EINTR(::close(fd))) {
  /external/chromium_org/third_party/webrtc/modules/audio_device/android/
low_latency_event_posix.cc 23 #define IGNORE_EINTR(x) ({ \
75 int retval = IGNORE_EINTR(close(*handle));

Completed in 384 milliseconds