Searched defs:borrowed_fd (Results 1 – 2 of 2) sorted by relevance
263 struct borrowed_fd { struct264 /* implicit */ borrowed_fd(int fd) : fd_(fd) {} // NOLINT in borrowed_fd() argument266 /* implicit */ borrowed_fd(const unique_fd_impl<T>& ufd) : fd_(ufd.get()) {} // NOLINT in borrowed_fd() argument268 int get() const { return fd_; } in get()
156 auto borrowed_fd = Transform(abs_path_, std::move(read_fd)); in OpenImpl() local