Home | History | Annotate | Download | only in recovery

Lines Matching defs:fd_

26     unique_fd(int fd) : fd_(fd) { }
29 fd_ = uf.fd_;
30 uf.fd_ = -1;
34 if (fd_ != -1) {
35 close(fd_);
40 return fd_;
45 fd_ = uf.fd_;
46 uf.fd_ = -1;
51 return fd_ != -1;
55 int fd_;