Home
last modified time | relevance | path

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

/packages/services/Car/service/src/com/android/car/watchdog/
DWatchdogStorage.java121 private @DatabaseStateType int mCurrentDbState = DB_STATE_CLEAN; field in WatchdogStorage
157 mCurrentDbState = mCurrentDbState == DB_STATE_WRITE_IN_PROGRESS in markDirty()
172 if (mCurrentDbState != DB_STATE_DIRTY) { in startWrite()
174 toDbStateString(mCurrentDbState)); in startWrite()
177 mCurrentDbState = DB_STATE_WRITE_IN_PROGRESS; in startWrite()
185 mCurrentDbState = mCurrentDbState == DB_STATE_CLEAN ? DB_STATE_CLEAN : DB_STATE_DIRTY; in endWrite()
192 if (mCurrentDbState != DB_STATE_WRITE_IN_PROGRESS) { in markWriteSuccessful()
194 toDbStateString(mCurrentDbState)); in markWriteSuccessful()
197 mCurrentDbState = DB_STATE_CLEAN; in markWriteSuccessful()