Searched refs:guard_state_ (Results 1 – 2 of 2) sorted by relevance
40 : guard_state_(GuardState::kClosed), fd_(-1), auto_close_(true), read_only_mode_(false) { in FdFile()44 : guard_state_(check_usage ? GuardState::kBase : GuardState::kNoCheck), in FdFile()53 : guard_state_(check_usage ? GuardState::kBase : GuardState::kNoCheck), in FdFile()61 guard_state_ = GuardState::kNoCheck; in FdFile()66 if (kCheckSafeUsage && (guard_state_ < GuardState::kNoCheck)) { in Destroy()67 if (guard_state_ < GuardState::kFlushed) { in Destroy()70 if (guard_state_ < GuardState::kClosed) { in Destroy()73 DCHECK_GE(guard_state_, GuardState::kClosed); in Destroy()91 guard_state_ = other.guard_state_; in operator =()107 if (guard_state_ < GuardState::kNoCheck) { in moveTo()[all …]
50 : guard_state_(other.guard_state_), in FdFile()66 guard_state_ = GuardState::kNoCheck; in Release()77 guard_state_ = fd == -1 ? GuardState::kNoCheck : GuardState::kBase; in Reset()79 guard_state_ = GuardState::kNoCheck; in Reset()167 guard_state_ = new_state; in resetGuard()171 GuardState guard_state_; variable