HomeSort by relevance Sort by last modified time
    Searched refs:putLong (Results 1 - 25 of 685) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /packages/apps/Settings/tests/robotests/src/com/android/settings/deviceinfo/storage/
CachedStorageValuesHelperTest.java 76 .putLong(GAME_APPS_SIZE_KEY, 0)
77 .putLong(MUSIC_APPS_SIZE_KEY, 10)
78 .putLong(VIDEO_APPS_SIZE_KEY, 100)
79 .putLong(PHOTO_APPS_SIZE_KEY, 1000)
80 .putLong(OTHER_APPS_SIZE_KEY, 10000)
81 .putLong(CACHE_APPS_SIZE_KEY, 100000)
82 .putLong(EXTERNAL_TOTAL_BYTES, 2)
83 .putLong(EXTERNAL_AUDIO_BYTES, 22)
84 .putLong(EXTERNAL_VIDEO_BYTES, 222)
85 .putLong(EXTERNAL_IMAGE_BYTES, 2222
    [all...]
  /frameworks/base/core/java/android/os/
PerformanceCollector.java 393 iteration.putLong(METRIC_KEY_EXECUTION_TIME, mExecTime);
394 iteration.putLong(METRIC_KEY_CPU_TIME, mCpuTime);
461 mPerfSnapshot.putLong("pre_" + key, binderCounts.getLong(key));
504 mPerfSnapshot.putLong(key, binderCounts.getLong(key));
510 mPerfSnapshot.putLong(key, allocCounts.getLong(key));
513 mPerfSnapshot.putLong(METRIC_KEY_EXECUTION_TIME, mSnapshotExecTime);
514 mPerfSnapshot.putLong(METRIC_KEY_CPU_TIME, mSnapshotCpuTime);
516 mPerfSnapshot.putLong(METRIC_KEY_NATIVE_SIZE, nativeMax);
517 mPerfSnapshot.putLong(METRIC_KEY_NATIVE_ALLOCATED, nativeAllocated);
518 mPerfSnapshot.putLong(METRIC_KEY_NATIVE_FREE, nativeFree)
    [all...]
  /packages/apps/Settings/src/com/android/settings/deviceinfo/storage/
CachedStorageValuesHelper.java 137 .putLong(FREE_BYTES_KEY, storageInfo.freeBytes)
138 .putLong(TOTAL_BYTES_KEY, storageInfo.totalBytes)
139 .putLong(GAME_APPS_SIZE_KEY, result.gamesSize)
140 .putLong(MUSIC_APPS_SIZE_KEY, result.musicAppsSize)
141 .putLong(VIDEO_APPS_SIZE_KEY, result.videoAppsSize)
142 .putLong(PHOTO_APPS_SIZE_KEY, result.photosAppsSize)
143 .putLong(OTHER_APPS_SIZE_KEY, result.otherAppsSize)
144 .putLong(CACHE_APPS_SIZE_KEY, result.cacheSize)
145 .putLong(EXTERNAL_TOTAL_BYTES, result.externalStats.totalBytes)
146 .putLong(EXTERNAL_AUDIO_BYTES, result.externalStats.audioBytes
    [all...]
  /external/ims/rcs/presencepolling/src/com/android/service/ims/presence/
SharedPrefUtil.java 64 eabPref.putLong(CONTACT_CHANGED_PREF_KEY, time).commit();
78 eabPref.putLong(CONTACT_PROFILE_CHANGED_PREF_KEY, time).commit();
92 eabPref.putLong(CONTACT_DELETE_PREF_KEY, time).commit();
100 eabPref.putLong(CONTACT_CHANGED_PREF_KEY, 0);
101 eabPref.putLong(CONTACT_DELETE_PREF_KEY, 0);
102 eabPref.putLong(CONTACT_PROFILE_CHANGED_PREF_KEY, 0);
113 eabPref.putLong(CONTACT_CHANGED_PREF_KEY, 0);
114 eabPref.putLong(CONTACT_DELETE_PREF_KEY, 0);
115 eabPref.putLong(CONTACT_PROFILE_CHANGED_PREF_KEY, 0);
  /external/annotation-tools/asmx/core/org/objectweb/asm/
ByteVector.class 
  /frameworks/base/core/java/android/hardware/camera2/marshal/impl/
MarshalQueryableStreamConfigurationDuration.java 55 buffer.putLong(value.getFormat() & MASK_UNSIGNED_INT); // unsigned int -> long
56 buffer.putLong(value.getWidth());
57 buffer.putLong(value.getHeight());
58 buffer.putLong(value.getDuration());
  /frameworks/base/apct-tests/perftests/utils/src/android/perftests/utils/
ManualBenchmarkState.java 151 status.putLong(key + "_median", mStats.getMedian());
152 status.putLong(key + "_mean", (long) mStats.getMean());
153 status.putLong(key + "_percentile90", mStats.getPercentile90());
154 status.putLong(key + "_percentile95", mStats.getPercentile95());
155 status.putLong(key + "_stddev", (long) mStats.getStandardDeviation());
BenchmarkState.java 236 status.putLong(key + "_median", median());
237 status.putLong(key + "_mean", mean());
238 status.putLong(key + "_min", min());
239 status.putLong(key + "_standardDeviation", standardDeviation());
  /packages/apps/DeskClock/src/com/android/deskclock/data/
TimerDAO.java 119 editor.putLong(LENGTH + id, timer.getLength());
120 editor.putLong(TOTAL_LENGTH + id, timer.getTotalLength());
121 editor.putLong(LAST_START_TIME + id, timer.getLastStartTime());
122 editor.putLong(LAST_WALL_CLOCK_TIME + id, timer.getLastWallClockTime());
123 editor.putLong(REMAINING_TIME + id, timer.getRemainingTime());
144 editor.putLong(LENGTH + id, timer.getLength());
145 editor.putLong(TOTAL_LENGTH + id, timer.getTotalLength());
146 editor.putLong(LAST_START_TIME + id, timer.getLastStartTime());
147 editor.putLong(LAST_WALL_CLOCK_TIME + id, timer.getLastWallClockTime());
148 editor.putLong(REMAINING_TIME + id, timer.getRemainingTime())
    [all...]
StopwatchDAO.java 87 .putLong(LAST_START_TIME, stopwatch.getLastStartTime())
88 .putLong(LAST_WALL_CLOCK_TIME, stopwatch.getLastWallClockTime())
89 .putLong(ACCUMULATED_TIME, stopwatch.getAccumulatedTime());
134 .putLong(LAP_ACCUMULATED_TIME + newLapCount, accumulatedTime)
  /frameworks/base/tests/DataIdleTest/src/com/android/tests/dataidle/
DataIdleTest.java 106 result.putLong(String.format(labelTemplate, "rxBytes"), statsEntry.rxBytes);
107 result.putLong(String.format(labelTemplate, "txBytes"), statsEntry.txBytes);
114 result.putLong("Total rx Bytes", rxBytes);
115 result.putLong("Total tx Bytes", txBytes);
116 result.putLong("Total rx Packets", rxPackets);
117 result.putLong("Total tx Packets", txPackets);
  /packages/apps/ManagedProvisioning/src/com/android/managedprovisioning/common/
ManagedProvisioningSharedPreferences.java 56 mSharedPreferences.edit().putLong(KEY_PROVISIONING_ID, provisioningId).commit();
  /frameworks/base/packages/SettingsLib/tests/robotests/src/com/android/settingslib/core/instrumentation/
SharedPreferenceLoggerTest.java 101 editor.putLong(TEST_KEY, 1);
102 editor.putLong(TEST_KEY, 1);
103 editor.putLong(TEST_KEY, 1);
104 editor.putLong(TEST_KEY, 1);
105 editor.putLong(TEST_KEY, 2);
116 editor.putLong(TEST_KEY, 1);
117 editor.putLong(TEST_KEY, veryBigNumber);
129 editor.putLong(TEST_KEY, 1);
130 editor.putLong(TEST_KEY, veryNegativeNumber);
  /frameworks/base/packages/SettingsLib/src/com/android/settingslib/net/
SummaryForAllUidLoader.java 38 args.putLong(KEY_START, start);
39 args.putLong(KEY_END, end);
  /frameworks/base/core/tests/utillib/src/android/test/
BandwidthTestCase.java 149 bundle.putLong(REPORT_KEY_BYTES_RECEIVED, entry.rxBytes);
150 bundle.putLong(REPORT_KEY_BYTES_SENT, entry.txBytes);
151 bundle.putLong(REPORT_KEY_PACKETS_RECEIVED, entry.rxPackets);
152 bundle.putLong(REPORT_KEY_PACKETS_SENT, entry.txPackets);
153 bundle.putLong(REPORT_KEY_OPERATIONS, entry.operations);
  /packages/providers/CalendarProvider/src/com/android/providers/calendar/
CalendarSanityChecker.java 119 .putLong(LAST_CHECK_REALTIME_PREF_KEY, now)
120 .putLong(LAST_CHECK_BOOT_COUNT_PREF_KEY, getBootCount())
182 .putLong(LAST_CHECK_REALTIME_PREF_KEY, 0)
183 .putLong(LAST_WTF_REALTIME_PREF_KEY, nowRealtime)
184 .putLong(LAST_CHECK_BOOT_COUNT_PREF_KEY, getBootCount())
  /frameworks/av/packages/MediaComponents/src/com/android/support/mediarouter/media/
MediaItemStatus.java 345 mBundle.putLong(KEY_TIMESTAMP, elapsedRealtimeTimestamp);
362 mBundle.putLong(KEY_CONTENT_POSITION, positionMilliseconds);
371 mBundle.putLong(KEY_CONTENT_DURATION, durationMilliseconds);
  /frameworks/support/mediarouter/src/main/java/androidx/mediarouter/media/
MediaItemStatus.java 346 mBundle.putLong(KEY_TIMESTAMP, elapsedRealtimeTimestamp);
363 mBundle.putLong(KEY_CONTENT_POSITION, positionMilliseconds);
372 mBundle.putLong(KEY_CONTENT_DURATION, durationMilliseconds);
  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/utils/
ImportantNoticeUtilsTests.java 74 private void putLong(final String key, final Long value) {
78 mPref.edit().putLong(key, value).apply();
91 putLong(KEY_TIMESTAMP_OF_CONTACTS_NOTICE, mLastTime);
  /external/guava/guava/src/com/google/common/hash/
AbstractHasher.java 32 return putLong(Double.doubleToRawLongBits(d));
AbstractStreamingHashFunction.java 53 return newHasher().putLong(input).hash();
136 bb.putLong(0);
215 public final Hasher putLong(long l) {
216 buffer.putLong(l);
Hasher.java 23 * translate all multibyte values ({@link #putInt(int)}, {@link #putLong(long)}, etc) to bytes
59 @Override Hasher putLong(long l);
67 * Equivalent to {@code putLong(Double.doubleToRawLongBits(d))}.
PrimitiveSink.java 71 PrimitiveSink putLong(long l);
  /external/libmojo/mojo/android/javatests/src/org/chromium/mojo/bindings/
ValidationTestUtilTest.java 64 expected.putLong(-1);
75 expected.putLong(-0x800);
110 expected.putLong(9);
120 expected.putLong(2);
  /libcore/ojluni/src/main/java/sun/nio/ch/
NativeObject.java 153 putLong(offset, ob.address);
297 final void putLong(int offset, long value) {
298 unsafe.putLong(offset + address, value);
377 unsafe.putLong(a, 0x0102030405060708L);

Completed in 344 milliseconds

1 2 3 4 5 6 7 8 91011>>