Home | History | Annotate | Download | only in nativehelper

Lines Matching defs:ScopedFd

26 class ScopedFd final {
28 explicit ScopedFd(int fd) : fd_(fd) {
30 ScopedFd() : ScopedFd(-1) {}
32 ~ScopedFd() {
36 ScopedFd(ScopedFd&& other) : fd_(other.release()) {}
37 ScopedFd& operator = (ScopedFd&& s) {
65 DISALLOW_COPY_AND_ASSIGN(ScopedFd);