Searched refs:IGNORE_EINTR (Results 1 - 25 of 34) sorted by relevance

12

/external/libchrome/base/files/
H A Dscoped_file.cc30 PCHECK(0 == IGNORE_EINTR(close(fd)));
H A Ddir_reader_linux.h42 if (IGNORE_EINTR(close(fd_)))
/external/libchrome/sandbox/linux/services/
H A Dinit_process_reaper.cc36 close_ret = IGNORE_EINTR(close(sync_fds[0]));
38 close_ret = IGNORE_EINTR(close(sync_fds[1]));
53 close_ret = IGNORE_EINTR(close(sync_fds[0]));
61 close_ret = IGNORE_EINTR(close(sync_fds[1]));
86 close_ret = IGNORE_EINTR(close(sync_fds[1]));
92 close_ret = IGNORE_EINTR(close(sync_fds[0]));
H A Dscoped_process.cc47 PCHECK(0 == IGNORE_EINTR(close(pipe_fds_[0])));
57 PCHECK(0 == IGNORE_EINTR(close(pipe_fds_[1])));
71 PCHECK(0 == IGNORE_EINTR(close(pipe_fds_[0])));
74 PCHECK(0 == IGNORE_EINTR(close(pipe_fds_[1])));
H A Dnamespace_utils.cc52 RAW_CHECK(IGNORE_EINTR(close(fd)) == 0);
114 RAW_CHECK(IGNORE_EINTR(close(fd)) == 0);
H A Dproc_util_unittest.cc23 ASSERT_EQ(0, IGNORE_EINTR(close(fd)));
H A Dthread_helpers_unittests.cc48 ~ScopedProc() { PCHECK(0 == IGNORE_EINTR(close(fd_))); }
/external/libchrome/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
H A Dfile_descriptor_shuffle.cc96 int ret = IGNORE_EINTR(close(fd));
H A Dunix_domain_socket_linux_unittest.cc69 ASSERT_EQ(0, IGNORE_EINTR(close(fds[0])));
/external/libweave/third_party/chromium/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/google-breakpad/src/common/linux/
H A Deintr_wrapper.h47 #define IGNORE_EINTR(x) ({ \ macro
/external/google-breakpad/src/common/tests/
H A Dfile_utils.cc54 if (IGNORE_EINTR(close(infile)) < 0) {
87 if (IGNORE_EINTR(close(infile)) == -1) {
91 if (IGNORE_EINTR(close(outfile)) == -1) {
115 if (IGNORE_EINTR(close(fd)) == -1) {
146 if (IGNORE_EINTR(close(fd)) == -1) {
/external/tlsdate/src/events/
H A Dsave.c40 bytes = IGNORE_EINTR (write (fd, &t, sizeof (t)));
H A Droute_up.c29 if (IGNORE_EINTR (read (fd, buf, sizeof (buf))) != sizeof (buf))
H A Dtlsdate_status.c30 ssize_t ret = IGNORE_EINTR (read (fd, &server_time, sizeof (server_time)));
H A Dtime_set.c90 bytes = IGNORE_EINTR (read (fd, &status, sizeof (status)));
/external/libbrillo/brillo/
H A Dprocess.cc203 IGNORE_EINTR(close(fd));
242 IGNORE_EINTR(close(i->second.parent_fd_));
248 IGNORE_EINTR(close(i->second.child_fd_));
264 IGNORE_EINTR(close(output_handle));
301 IGNORE_EINTR(close(i->second.child_fd_));
387 IGNORE_EINTR(close(i->second.parent_fd_));
H A Dasynchronous_signal_handler.cc34 if (IGNORE_EINTR(close(descriptor_)) != 0)
/external/tlsdate/src/
H A Dtlsdate-setter.c174 IGNORE_EINTR (write (notify_fd, &status, sizeof(status)));
177 IGNORE_EINTR (write (notify_fd, &status, sizeof(status)));
H A Dutil.h35 #define IGNORE_EINTR(expr) ({ \ macro
/external/libbrillo/brillo/message_loops/
H A Dglib_message_loop_unittest.cc60 IGNORE_EINTR(close(fd));
/external/libchrome/sandbox/linux/seccomp-bpf/
H A Dsyscall_unittest.cc89 int close_return_value = IGNORE_EINTR(Syscall::Call(__NR_close, new_fd));
204 EXPECT_EQ(0, IGNORE_EINTR(Syscall::Call(__NR_close, fd)));
239 EXPECT_EQ(0, IGNORE_EINTR(Syscall::Call(__NR_close, fd)));
/external/libchrome/base/debug/
H A Ddebugger_posix.cc143 if (IGNORE_EINTR(close(status_fd)) < 0)
/external/libchrome/base/message_loop/
H A Dmessage_pump_libevent.cc132 if (IGNORE_EINTR(close(wakeup_pipe_in_)) < 0)
136 if (IGNORE_EINTR(close(wakeup_pipe_out_)) < 0)

Completed in 731 milliseconds

12