Home
last modified time | relevance | path

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

/frameworks/base/core/java/android/app/timezone/
DRulesState.java103 private final boolean mOperationInProgress; field in RulesState
118 this.mOperationInProgress = operationInProgress; in RulesState()
140 return mOperationInProgress; in isOperationInProgress()
218 out.writeByte(mOperationInProgress ? BYTE_TRUE : BYTE_FALSE); in writeToParcel()
236 if (mOperationInProgress != that.mOperationInProgress) { in equals()
264 result = 31 * result + (mOperationInProgress ? 1 : 0); in hashCode()
280 + ", mOperationInProgress=" + mOperationInProgress in toString()
/frameworks/base/services/core/java/com/android/server/timezone/
DRulesManagerService.java102 private final AtomicBoolean mOperationInProgress = new AtomicBoolean(false); field in RulesManagerService
176 boolean operationInProgress = this.mOperationInProgress.get(); in getRulesStateInternal()
228 if (mOperationInProgress.get()) { in requestInstall()
231 mOperationInProgress.set(true); in requestInstall()
304 mOperationInProgress.set(false); in run()
346 if (mOperationInProgress.get()) { in requestUninstall()
349 mOperationInProgress.set(true); in requestUninstall()
398 mOperationInProgress.set(false); in run()
558 "mOperationInProgress=" + mOperationInProgress + in toString()