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