Home | History | Annotate | Download | only in gdbsupport

Lines Matching defs:scoped_fd

0 /* scoped_fd, automatically close a file descriptor
28 class scoped_fd
31 explicit scoped_fd (int fd = -1) noexcept : m_fd (fd) {}
33 scoped_fd (scoped_fd &&other) noexcept
39 ~scoped_fd ()
45 scoped_fd &operator= (scoped_fd &&other)
57 DISABLE_COPY_AND_ASSIGN (scoped_fd);
67 descriptor. On success, this scoped_fd will be released. On
68 failure, return NULL and leave this scoped_fd in possession of