Searched refs:m_fds (Results 1 - 4 of 4) sorted by relevance

/netbsd-current/external/gpl3/gdb/dist/gdbsupport/
H A Devent-pipe.cc42 if (gdb_pipe_cloexec (m_fds) == -1)
45 if (fcntl (m_fds[0], F_SETFL, O_NONBLOCK) == -1
46 || fcntl (m_fds[1], F_SETFL, O_NONBLOCK) == -1)
60 ::close (m_fds[0]);
61 ::close (m_fds[1]);
62 m_fds[0] = -1;
63 m_fds[1] = -1;
76 ret = read (m_fds[0], &buf, 1);
95 ret = write (m_fds[1], "+", 1);
H A Devent-pipe.h44 { return m_fds[0] != -1; }
49 { return m_fds[0]; }
57 int m_fds[2] = { -1, -1 }; member in class:event_pipe
/netbsd-current/external/bsd/atf/dist/tools/
H A Dio.hpp414 const int* m_fds; member in class:tools::io::muxer
H A Dio.cpp273 m_fds(fds),
319 poll_fds[i].fd = m_fds[i];
351 while (read_one(i, m_fds[i], m_buffers[i], false) > 0) {}

Completed in 190 milliseconds