Home | History | Annotate | Download | only in netdutils

Lines Matching defs:Fd

23 #include "netdutils/Fd.h"
31 // *) Uses a strongly typed wrapper (Fd) for the underlying file descriptor
40 UniqueFd(Fd fd) : mFd(fd) {}
55 // Cleanup any currently owned Fd, replacing it with the optional
56 // parameter fd
57 void reset(Fd fd = Fd());
59 // Implict cast to Fd
60 const operator Fd() const { return mFd; }
63 Fd mFd;
66 std::ostream& operator<<(std::ostream& os, const UniqueFd& fd);