Home | History | Annotate | Download | only in auto_resources

Lines Matching defs:fd_

86   explicit AutoCloseFileDescriptor(int fd) : fd_(fd) { }
88 if (fd_ != -1) {
89 (void)::close(fd_);
90 fd_ = -1;
95 return fd_;
99 return fd_ == -1;
107 if (fd_ != -1) {
108 rval = !::close(fd_);
109 fd_ = -1;
118 int fd_;