HomeSort by relevance Sort by last modified time
    Searched refs:guard_state_ (Results 1 - 2 of 2) sorted by null

  /art/runtime/base/unix_file/
fd_file.cc 28 FdFile::FdFile() : guard_state_(GuardState::kClosed), fd_(-1), auto_close_(true) {
32 : guard_state_(check_usage ? GuardState::kBase : GuardState::kNoCheck),
37 : guard_state_(check_usage ? GuardState::kBase : GuardState::kNoCheck),
43 if (kCheckSafeUsage && (guard_state_ < GuardState::kNoCheck)) {
44 if (guard_state_ < GuardState::kFlushed) {
47 if (guard_state_ < GuardState::kClosed) {
50 CHECK_GE(guard_state_, GuardState::kClosed);
61 if (guard_state_ < GuardState::kNoCheck) {
62 if (warn_threshold < GuardState::kNoCheck && guard_state_ >= warn_threshold) {
65 guard_state_ = target
    [all...]
fd_file.h 103 guard_state_ = new_state;
107 GuardState guard_state_; member in class:unix_file::FdFile

Completed in 108 milliseconds