Home | History | Annotate | Download | only in payload_consumer

Lines Matching defs:fd_

34   CachedFileDescriptor(FileDescriptorPtr fd, size_t cache_size) : fd_(fd) {
40 return fd_->Open(path, flags, mode);
43 return fd_->Open(path, flags);
46 return fd_->Read(buf, count);
50 uint64_t BlockDevSize() override { return fd_->BlockDevSize(); }
55 return fd_->BlkIoctl(request, start, length, result);
59 bool IsSettingErrno() override { return fd_->IsSettingErrno(); }
60 bool IsOpen() override { return fd_->IsOpen(); }
63 // Internal flush without the need to call |fd_->Flush()|.
66 FileDescriptorPtr fd_;