Home
last modified time | relevance | path

Searched refs:value_ (Results 1 – 2 of 2) sorted by relevance

/device/google/cuttlefish/common/libs/fs/
Dshared_select.h41 iterator begin() { return value_.begin(); } in begin()
42 iterator end() { return value_.end(); } in end()
43 const_iterator begin() const { return value_.begin(); } in begin()
44 const_iterator end() const { return value_.end(); } in end()
47 value_.swap(rhs->value_); in swap()
51 value_.erase(in); in Clr()
55 return value_.count(in) != 0; in IsSet()
59 value_.insert(in); in Set()
63 value_.clear(); in Zero()
67 std::set<SharedFD> value_;
Dshared_fd.h114 SharedFD(const std::shared_ptr<FileInstance>& in) : value_(in) {} in SharedFD()
140 bool operator==(const SharedFD& rhs) const { return value_ == rhs.value_; }
142 bool operator!=(const SharedFD& rhs) const { return value_ != rhs.value_; }
144 bool operator<(const SharedFD& rhs) const { return value_ < rhs.value_; }
146 bool operator<=(const SharedFD& rhs) const { return value_ <= rhs.value_; }
148 bool operator>(const SharedFD& rhs) const { return value_ > rhs.value_; }
150 bool operator>=(const SharedFD& rhs) const { return value_ >= rhs.value_; }
152 std::shared_ptr<FileInstance> operator->() const { return value_; }
154 const FileInstance& operator*() const { return *value_; }
156 FileInstance& operator*() { return *value_; }
[all …]