HomeSort by: relevance | last modified time | path
    Searched defs:m_fd (Results 1 - 15 of 15) sorted by relevancy

  /src/external/gpl3/gdb/dist/gdbsupport/
scoped_fd.h 31 explicit scoped_fd (int fd = -1) noexcept : m_fd (fd) {} function in class:scoped_fd
34 : m_fd (other.m_fd) function in class:scoped_fd
36 other.m_fd = -1;
41 if (m_fd >= 0)
42 close (m_fd);
47 if (m_fd != other.m_fd)
49 if (m_fd >= 0)
50 close (m_fd);
84 int m_fd; member in class:scoped_fd
    [all...]
  /src/external/gpl3/gdb.old/dist/gdbsupport/
scoped_fd.h 31 explicit scoped_fd (int fd = -1) noexcept : m_fd (fd) {} function in class:scoped_fd
34 : m_fd (other.m_fd) function in class:scoped_fd
36 other.m_fd = -1;
41 if (m_fd >= 0)
42 close (m_fd);
47 if (m_fd != other.m_fd)
49 if (m_fd >= 0)
50 close (m_fd);
84 int m_fd; member in class:scoped_fd
    [all...]
  /src/external/bsd/elftosb/dist/common/
Random.h 52 int m_fd; member in class:RandomNumberGenerator
  /src/external/gpl3/gcc/dist/libcc1/
connection.hh 36 : m_fd (fd),
43 : m_fd (fd),
105 int m_fd; member in class:cc1_plugin::connection
  /src/external/gpl3/gcc.old/dist/libcc1/
connection.hh 36 : m_fd (fd),
43 : m_fd (fd),
105 int m_fd; member in class:cc1_plugin::connection
  /src/external/bsd/atf/dist/atf-c/detail/
process.h 54 int m_fd; member in struct:atf_process_stream
process_test.c 176 int m_fd; member in struct:connect_stream
194 s->m_fd = open("stdout", O_WRONLY | O_CREAT | O_TRUNC, 0644);
198 s->m_fd = open("stderr", O_WRONLY | O_CREAT | O_TRUNC, 0644);
204 ATF_REQUIRE(s->m_fd != -1);
207 RE(atf_process_stream_init_connect(&s->m_base.m_sb, src_fd, s->m_fd));
216 ATF_REQUIRE(close(s->m_fd) != -1);
225 int m_fd; member in struct:inherit_stream
247 s->m_fd = STDOUT_FILENO;
251 s->m_fd = STDERR_FILENO;
259 s->m_old_fd = dup(s->m_fd);
307 int m_fd; member in struct:redirect_fd_stream
    [all...]
  /src/external/bsd/atf/dist/tools/
process.hpp 158 int m_fd; member in class:tools::process::stream_redirect_fd
  /src/external/gpl3/gdb/dist/gdb/
ui-file.h 274 { return m_fd; }
278 descriptor in M_FD. */
287 int m_fd; member in class:stdio_file
linux-nat.c 4035 : m_ptid (ptid), m_fd (fd)
4037 gdb_assert (m_fd != -1);
4043 m_fd, m_ptid.pid (), m_ptid.lwp ());
4044 close (m_fd);
4051 return m_fd;
4060 int m_fd = -1;
4054 int m_fd = -1; variable
target.c 3423 : m_fd (fd) function
3429 if (m_fd >= 0)
3433 target_fileio_close (m_fd, &target_errno);
3441 return m_fd;
3445 int m_fd; variable
  /src/external/gpl3/gdb.old/dist/gdb/
ui-file.h 274 { return m_fd; }
278 descriptor in M_FD. */
287 int m_fd; member in class:stdio_file
linux-nat.c 4035 : m_ptid (ptid), m_fd (fd)
4037 gdb_assert (m_fd != -1);
4043 m_fd, m_ptid.pid (), m_ptid.lwp ());
4044 close (m_fd);
4051 return m_fd;
4060 int m_fd = -1;
4054 int m_fd = -1; variable
target.c 3395 : m_fd (fd) function
3401 if (m_fd >= 0)
3405 target_fileio_close (m_fd, &target_errno);
3413 return m_fd;
3417 int m_fd; variable
  /src/external/bsd/atf/dist/atf-sh/
atf-check.cpp 112 int m_fd; member in class:__anon6384::temp_file
117 m_fd(-1)
122 m_fd = ::mkstemp(buf.get());
123 if (m_fd == -1)
150 if (::write(m_fd, text.c_str(), text.size()) == -1)
157 if (m_fd != -1) {
159 ::close(m_fd);
160 m_fd = -1;

Completed in 44 milliseconds