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

1 2 3 4 5 6 7

  /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);
  /packages/apps/Settings/src/com/android/settings/bluetooth/
LocalBluetoothPreferences.java 112 editor.putLong(KEY_LAST_SELECTED_DEVICE_TIME,
119 editor.putLong(KEY_DISCOVERABLE_END_TIMESTAMP, endTimestamp);
129 editor.putLong(
  /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);
  /libcore/luni/src/main/java/java/nio/
ReadOnlyDirectByteBuffer.java 110 public ByteBuffer putLong(int index, long value) {
115 public ByteBuffer putLong(long value) {
ReadOnlyHeapByteBuffer.java 125 public ByteBuffer putLong(int index, long value) {
130 public ByteBuffer putLong(long value) {
MappedByteBufferAdapter.java 326 public ByteBuffer putLong(int index, long value) {
328 wrapped.putLong(index, value);
333 public ByteBuffer putLong(long value) {
335 wrapped.putLong(value);
ReadWriteHeapByteBuffer.java 172 return putLong(Double.doubleToRawLongBits(value));
177 return putLong(index, Double.doubleToRawLongBits(value));
209 public ByteBuffer putLong(int index, long value) {
216 public ByteBuffer putLong(long value) {
LongToByteBufferAdapter.java 145 byteBuffer.putLong(position++ * SizeOf.LONG, c);
152 byteBuffer.putLong(index * SizeOf.LONG, c);
  /frameworks/ex/common/java/com/android/common/
OperationScheduler.java 203 SharedPreferencesCompat.apply(mStorage.edit().putLong(name, time));
218 mStorage.edit().putLong(PREFIX + "triggerTimeMillis", millis));
230 .putLong(PREFIX + "moratoriumTimeMillis", millis)
231 .putLong(PREFIX + "moratoriumSetTimeMillis", currentTimeMillis()));
281 .putLong(PREFIX + "lastSuccessTimeMillis", currentTimeMillis()));
291 editor.putLong(PREFIX + "lastErrorTimeMillis", currentTimeMillis());
  /development/cmds/monkey/src/com/android/commands/monkey/
MonkeyActivityEvent.java 64 args.putLong("alarmTime", mAlarmTime);
  /frameworks/base/core/java/android/content/
SharedPreferences.java 113 Editor putLong(String key, long value);
  /packages/apps/Settings/src/com/android/settings/deviceinfo/
StorageMeasurement.java 178 bundle.putLong(TOTAL_SIZE, mTotalSize);
179 bundle.putLong(AVAIL_SIZE, mAvailSize);
194 bundle.putLong(TOTAL_SIZE, mTotalSize);
195 bundle.putLong(AVAIL_SIZE, mAvailSize);
196 bundle.putLong(APPS_USED, mAppsSize);
197 bundle.putLong(DOWNLOADS_SIZE, mDownloadsSize);
198 bundle.putLong(MISC_SIZE, mMiscSize);
  /packages/apps/Email/src/com/android/email/widget/
WidgetManager.java 122 .putLong(ACCOUNT_ID_PREFIX + appWidgetId, accountId)
123 .putLong(MAILBOX_ID_PREFIX + appWidgetId, mailboxId)
  /development/tutorials/NotepadCodeLab/Notepadv2Solution/src/com/android/demo/notepad2/
NoteEdit.java 66 bundle.putLong(NotesDbAdapter.KEY_ROWID, mRowId);

Completed in 239 milliseconds

1 2 3 4 5 6 7