Home
last modified time | relevance | path

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

/packages/modules/HealthFitness/service/java/com/android/server/healthconnect/migration/
DMigrationConstants.java49 public static final String IDLE_TIMEOUT_REACHED_KEY = "idle_timeout_reached_key"; field in MigrationConstants
DMigrationStateManager.java31 …port static com.android.server.healthconnect.migration.MigrationConstants.IDLE_TIMEOUT_REACHED_KEY;
465 preferences.put(IDLE_TIMEOUT_REACHED_KEY, String.valueOf(true)); in updateMigrationStatePreference()
531 PreferenceHelper.getInstance().getPreference(IDLE_TIMEOUT_REACHED_KEY); in hasIdleStateTimedOut()
/packages/modules/HealthFitness/tests/unittests/src/com/android/server/healthconnect/migration/
DMigrationStateManagerTest.java28 …port static com.android.server.healthconnect.migration.MigrationConstants.IDLE_TIMEOUT_REACHED_KEY;
860 when(mPreferenceHelper.getPreference(eq(IDLE_TIMEOUT_REACHED_KEY))) in testHasIdleStateTimedOut_returnsTrue_whenTrue()
867 when(mPreferenceHelper.getPreference(eq(IDLE_TIMEOUT_REACHED_KEY))).thenReturn(null); in testHasIdleStateTimedOut_returnsFalse_whenNotSet()