Home | History | Annotate | Download | only in tests

Lines Matching defs:fd_

61     if (fd_ >= 0)
67 if (fd_ >= 0)
73 if (fd_ >= 0) {
74 close(fd_);
75 fd_ = -1;
82 return fd_ >= 0;
88 return fd_;
93 fd_ = -1;
101 fd_ = mkstemp(path_templ);
102 if (fd_ < 0)
109 ssize_t r = HANDLE_EINTR(write(fd_, text, text_len));
111 close(fd_);
112 fd_ = -1;
116 lseek(fd_, 0, SEEK_SET);
119 int fd_;