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

1 2 3 4 5 6 7 8 91011>>

  /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...]
  /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/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);
  /cts/tests/tests/text/src/android/text/style/cts/
TtsSpanTest.java 32 bundle.putLong("argument.three", 3);
33 bundle.putLong("argument.four", 4);
  /packages/apps/Settings/src/com/android/settings/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);
  /external/chromium_org/components/cronet/android/java/src/org/chromium/net/
HttpUrlRequestFactoryConfig.java 84 putLong(UrlRequestContextConfig.HTTP_CACHE_MAX_SIZE, maxSize);
88 putLong(UrlRequestContextConfig.HTTP_CACHE_MAX_SIZE, maxSize);
157 private HttpUrlRequestFactoryConfig putLong(String key, long value) {
  /frameworks/support/v7/mediarouter/src/android/support/v7/media/
MediaItemStatus.java 345 mBundle.putLong(KEY_TIMESTAMP, elapsedRealtimeTimestamp);
362 mBundle.putLong(KEY_CONTENT_POSITION, positionMilliseconds);
371 mBundle.putLong(KEY_CONTENT_DURATION, durationMilliseconds);
  /external/chromium_org/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);
  /external/guava/guava/src/com/google/common/hash/
AbstractHasher.java 34 return putLong(Double.doubleToRawLongBits(d));
AbstractStreamingHashFunction.java 45 return newHasher().putLong(input).hash();
128 bb.putLong(0);
207 public final Hasher putLong(long l) {
208 buffer.putLong(l);
Hasher.java 23 * translate all multibyte values ({@link #putInt(int)}, {@link #putLong(long)}, etc) to bytes
36 @Override Hasher putLong(long l);
42 * Equivalent to {@code putLong(Double.doubleToRawLongBits(d))}.
Sink.java 71 Sink putLong(long l);
AbstractCompositeHashFunction.java 71 @Override public Hasher putLong(long l) {
73 hasher.putLong(l);
  /packages/apps/DeskClock/src/com/android/deskclock/stopwatch/
StopwatchService.java 261 editor.putLong(Stopwatches.NOTIF_CLOCK_BASE, clockTime);
262 editor.putLong(Stopwatches.NOTIF_CLOCK_ELAPSED, -1);
265 editor.putLong(Stopwatches.NOTIF_CLOCK_ELAPSED, clockTime);
266 editor.putLong(Stopwatches.NOTIF_CLOCK_BASE, -1);
343 editor.putLong(Stopwatches.PREF_START_TIME, startTime);
352 editor.putLong(Stopwatches.PREF_LAP_TIME + Integer.toString(numLaps), lapTimeElapsed);
354 editor.putLong(Stopwatches.PREF_LAP_TIME + Integer.toString(numLaps), lapTimeElapsed);
358 editor.putLong(Stopwatches.PREF_ACCUM_TIME, elapsedTime);
385 editor.putLong(Stopwatches.KEY + CircleTimerView.PREF_CTV_INTERVAL_START,
404 editor.putLong(Stopwatches.KEY + CircleTimerView.PREF_CTV_INTERVAL, lapTime)
    [all...]
  /frameworks/support/v4/api21/android/support/v4/media/
MediaMetadataCompatApi21.java 55 public static void putLong(Object builderObj, String key, long value) {
56 ((MediaMetadata.Builder)builderObj).putLong(key, value);
  /frameworks/ex/common/java/com/android/common/
OperationScheduler.java 232 SharedPreferencesCompat.apply(mStorage.edit().putLong(name, time));
247 mStorage.edit().putLong(PREFIX + "triggerTimeMillis", millis));
259 .putLong(PREFIX + "moratoriumTimeMillis", millis)
260 .putLong(PREFIX + "moratoriumSetTimeMillis", currentTimeMillis()));
310 .putLong(PREFIX + "lastSuccessTimeMillis", currentTimeMillis()));
320 editor.putLong(PREFIX + "lastErrorTimeMillis", currentTimeMillis());
  /frameworks/base/core/tests/ConnectivityManagerTest/src/com/android/connectivitymanagertest/stress/
WifiStressTest.java 182 result.putLong("actual-iterations", i - 1);
183 result.putLong("avg-scan-time", averageScanTime);
204 Settings.Global.putLong(mRunner.getContext().getContentResolver(),
287 result.putLong("actual-iterations", i - 1);
288 result.putLong("avg-reconnect-time", avgReconnectTime);
  /packages/apps/DeskClock/src/com/android/deskclock/
CircleTimerView.java 227 editor.putLong (key + PREF_CTV_INTERVAL, mIntervalTime);
228 editor.putLong (key + PREF_CTV_INTERVAL_START, mIntervalStartTime);
229 editor.putLong (key + PREF_CTV_CURRENT_INTERVAL, mCurrentIntervalTime);
230 editor.putLong (key + PREF_CTV_ACCUM_TIME, mAccumulatedTime);
231 editor.putLong (key + PREF_CTV_MARKER_TIME, mMarkerTime);
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/
SearchSettingsImpl.java 107 SharedPreferencesCompat.apply(getSearchPreferences().edit().putLong(name, value));
159 .putLong(FIRST_VOICE_HINT_DISPLAY_TIME, currentTime));
208 sharedPrefEditor.putLong(SEARCH_BASE_DOMAIN_APPLY_TIME, System.currentTimeMillis());
  /packages/apps/Settings/src/com/android/settings/bluetooth/
LocalBluetoothPreferences.java 123 editor.putLong(KEY_LAST_SELECTED_DEVICE_TIME,
130 editor.putLong(KEY_DISCOVERABLE_END_TIMESTAMP, endTimestamp);
140 editor.putLong(
  /development/cmds/monkey/src/com/android/commands/monkey/
MonkeyActivityEvent.java 64 args.putLong("alarmTime", mAlarmTime);
  /frameworks/base/core/java/android/content/
SharedPreferences.java 118 Editor putLong(String key, long value);
  /frameworks/support/v4/ics/android/support/v4/media/session/
MediaSessionCompatApi14.java 145 editor.putLong(MediaMetadataRetriever.METADATA_KEY_DISC_NUMBER,
149 editor.putLong(MediaMetadataRetriever.METADATA_KEY_DURATION,
157 editor.putLong(MediaMetadataRetriever.METADATA_KEY_NUM_TRACKS,
165 editor.putLong(MediaMetadataRetriever.METADATA_KEY_CD_TRACK_NUMBER,
  /packages/apps/Bluetooth/src/com/android/bluetooth/
Utils.java 112 converter.putLong(msb);
113 converter.putLong(8, lsb);
127 converter.putLong(i * BD_UUID_LEN, msb);
128 converter.putLong(i * BD_UUID_LEN + 8, lsb);

Completed in 644 milliseconds

1 2 3 4 5 6 7 8 91011>>