/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...] |
/external/jmonkeyengine/engine/src/networking/com/jme3/network/serializing/serializers/ |
LongSerializer.java | 52 buffer.putLong((Long)object);
|
DateSerializer.java | 53 buffer.putLong(((Date)object).getTime());
|
/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/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);
|
/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/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);
|
MessageDigestHashFunction.java | 107 @Override public Hasher putLong(long l) { 109 scratch.putLong(l);
|
Murmur3_128HashFunction.java | 149 bb.putLong(h1); 150 bb.putLong(h2);
|
/packages/apps/DeskClock/src/com/android/deskclock/stopwatch/ |
StopwatchService.java | 259 editor.putLong(Stopwatches.NOTIF_CLOCK_BASE, clockTime); 260 editor.putLong(Stopwatches.NOTIF_CLOCK_ELAPSED, -1); 263 editor.putLong(Stopwatches.NOTIF_CLOCK_ELAPSED, clockTime); 264 editor.putLong(Stopwatches.NOTIF_CLOCK_BASE, -1); 341 editor.putLong(Stopwatches.PREF_START_TIME, startTime); 350 editor.putLong(Stopwatches.PREF_LAP_TIME + Integer.toString(numLaps), lapTimeElapsed); 352 editor.putLong(Stopwatches.PREF_LAP_TIME + Integer.toString(numLaps), lapTimeElapsed); 356 editor.putLong(Stopwatches.PREF_ACCUM_TIME, elapsedTime); 383 editor.putLong(Stopwatches.KEY + CircleTimerView.PREF_CTV_INTERVAL_START, 402 editor.putLong(Stopwatches.KEY + CircleTimerView.PREF_CTV_INTERVAL, lapTime) [all...] |
/frameworks/ex/common/java/com/android/common/ |
OperationScheduler.java | 231 SharedPreferencesCompat.apply(mStorage.edit().putLong(name, time)); 246 mStorage.edit().putLong(PREFIX + "triggerTimeMillis", millis)); 258 .putLong(PREFIX + "moratoriumTimeMillis", millis) 259 .putLong(PREFIX + "moratoriumSetTimeMillis", currentTimeMillis())); 309 .putLong(PREFIX + "lastSuccessTimeMillis", currentTimeMillis())); 319 editor.putLong(PREFIX + "lastErrorTimeMillis", currentTimeMillis());
|
/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);
|
/packages/apps/Bluetooth/src/com/android/bluetooth/ |
Utils.java | 103 converter.putLong(msb); 104 converter.putLong(8, lsb); 118 converter.putLong(i * 16, msb); 119 converter.putLong(i * 16 + 8, lsb);
|
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/research/ |
ResearchSettings.java | 70 prefs.edit().putLong(PREF_RESEARCH_LAST_DIR_CLEANUP_TIME, lastDirCleanupTime).apply();
|
/libcore/luni/src/main/java/java/nio/ |
ByteBufferAsLongBuffer.java | 145 byteBuffer.putLong(position++ * SizeOf.LONG, c); 152 byteBuffer.putLong(index * SizeOf.LONG, c);
|
/development/tutorials/NotepadCodeLab/Notepadv2Solution/src/com/android/demo/notepad2/ |
NoteEdit.java | 66 bundle.putLong(NotesDbAdapter.KEY_ROWID, mRowId);
|