Searched refs:unique_fd_impl (Results 1 – 3 of 3) sorted by relevance
88 class unique_fd_impl final {90 unique_fd_impl() {} in unique_fd_impl() function92 explicit unique_fd_impl(int fd) { reset(fd); } in unique_fd_impl() function93 ~unique_fd_impl() { reset(); } in ~unique_fd_impl()95 unique_fd_impl(const unique_fd_impl&) = delete;96 void operator=(const unique_fd_impl&) = delete;97 unique_fd_impl(unique_fd_impl&& other) noexcept { reset(other.release()); } in unique_fd_impl() function98 unique_fd_impl& operator=(unique_fd_impl&& s) noexcept {178 using unique_fd = unique_fd_impl<DefaultCloser>;184 inline bool Pipe(unique_fd_impl<Closer>* read, unique_fd_impl<Closer>* write,[all …]
30 using unique_fd = android::base::unique_fd_impl<AdbCloser>;38 int adb_close(const android::base::unique_fd_impl<T>&)
74 using unique_fd = android::base::unique_fd_impl<FdsanBypassCloser>;