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

  /frameworks/base/core/java/android/app/timezone/
RulesState.java 103 private final boolean mOperationInProgress;
118 this.mOperationInProgress = operationInProgress;
140 return mOperationInProgress;
218 out.writeByte(mOperationInProgress ? BYTE_TRUE : BYTE_FALSE);
236 if (mOperationInProgress != that.mOperationInProgress) {
264 result = 31 * result + (mOperationInProgress ? 1 : 0);
280 + ", mOperationInProgress=" + mOperationInProgress
  /frameworks/base/services/core/java/com/android/server/timezone/
RulesManagerService.java 101 private final AtomicBoolean mOperationInProgress = new AtomicBoolean(false);
173 boolean operationInProgress = this.mOperationInProgress.get();
225 if (mOperationInProgress.get()) {
228 mOperationInProgress.set(true);
301 mOperationInProgress.set(false);
343 if (mOperationInProgress.get()) {
346 mOperationInProgress.set(true);
395 mOperationInProgress.set(false);
555 "mOperationInProgress=" + mOperationInProgress
    [all...]

Completed in 469 milliseconds