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

  /packages/apps/Settings/src/com/android/settings/deviceinfo/storage/
CachedStorageValuesHelper.java 42 public static final String EXTERNAL_TOTAL_BYTES = "external_total_bytes";
99 final long externalTotalBytes = mSharedPreferences.getLong(EXTERNAL_TOTAL_BYTES, -1);
145 .putLong(EXTERNAL_TOTAL_BYTES, result.externalStats.totalBytes)
  /packages/apps/Settings/tests/robotests/src/com/android/settings/deviceinfo/storage/
CachedStorageValuesHelperTest.java 23 import static com.android.settings.deviceinfo.storage.CachedStorageValuesHelper.EXTERNAL_TOTAL_BYTES;
82 .putLong(EXTERNAL_TOTAL_BYTES, 2)
110 .putLong(EXTERNAL_TOTAL_BYTES, 222222)
149 .putLong(EXTERNAL_TOTAL_BYTES, 2)
175 .putLong(EXTERNAL_TOTAL_BYTES, 2)
202 .putLong(EXTERNAL_TOTAL_BYTES, 2)
228 .putLong(EXTERNAL_TOTAL_BYTES, 2)
281 assertThat(mSharedPreferences.getLong(EXTERNAL_TOTAL_BYTES, -1)).isEqualTo(22222L);

Completed in 200 milliseconds