HomeSort by relevance Sort by last modified time
    Searched full:putlong (Results 1 - 25 of 561) 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/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);
  /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());
  /external/ims/rcs/presencepolling/src/com/android/service/ims/presence/
SharedPrefUtil.java 69 eabPref.putLong(CONTACT_CHANGED_PREF_KEY, time).commit();
81 eabPref.putLong(CONTACT_PROFILE_CHANGED_PREF_KEY, time).commit();
93 eabPref.putLong(CONTACT_DELETE_PREF_KEY, time).commit();
100 eabPref.putLong(VIDEO_CALLING_GROUP_ID, videoCallingGroupId).commit();
186 eabPref.putLong(CONTACT_CHANGED_PREF_KEY, 0);
187 eabPref.putLong(CONTACT_DELETE_PREF_KEY, 0);
188 eabPref.putLong(CONTACT_PROFILE_CHANGED_PREF_KEY, 0);
  /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/libgdx/backends/gdx-backends-gwt/src/com/badlogic/gdx/backends/gwt/emu/java/nio/
ReadWriteHeapByteBuffer.java 122 return putLong(Numbers.doubleToRawLongBits(value));
126 return putLong(index, Numbers.doubleToRawLongBits(value));
155 public ByteBuffer putLong (int index, long value) {
163 public ByteBuffer putLong (long value) {
ReadOnlyHeapByteBuffer.java 106 public ByteBuffer putLong (int index, long value) {
110 public ByteBuffer putLong (long value) {
DirectReadWriteByteBuffer.java 145 return putLong(Numbers.doubleToRawLongBits(value));
149 return putLong(index, Numbers.doubleToRawLongBits(value));
178 public ByteBuffer putLong (int index, long value) {
186 public ByteBuffer putLong (long value) {
DirectReadOnlyByteBuffer.java 121 public ByteBuffer putLong (int index, long value) {
125 public ByteBuffer putLong (long value) {
LongToByteBufferAdapter.java 178 byteBuffer.putLong(position++ << 3, c);
187 byteBuffer.putLong(index << 3, c);
StringByteBuffer.java 165 public ByteBuffer putLong (long value) {
170 public ByteBuffer putLong (int index, long value) {
  /frameworks/base/packages/SettingsLib/src/com/android/settingslib/net/
SummaryForAllUidLoader.java 38 args.putLong(KEY_START, start);
39 args.putLong(KEY_END, end);
  /packages/apps/DeskClock/src/com/android/deskclock/data/
TimerDAO.java 123 editor.putLong(LENGTH + id, timer.getLength());
124 editor.putLong(TOTAL_LENGTH + id, timer.getTotalLength());
125 editor.putLong(LAST_START_TIME + id, timer.getLastStartTime());
126 editor.putLong(REMAINING_TIME + id, timer.getRemainingTime());
148 editor.putLong(LENGTH + id, timer.getLength());
149 editor.putLong(TOTAL_LENGTH + id, timer.getTotalLength());
150 editor.putLong(LAST_START_TIME + id, timer.getLastStartTime());
151 editor.putLong(REMAINING_TIME + id, timer.getRemainingTime());
  /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/guava/guava/src/com/google/common/hash/
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))}.
AbstractHasher.java 32 return putLong(Double.doubleToRawLongBits(d));
AbstractByteHasher.java 106 public Hasher putLong(long l) {
107 scratch.putLong(l);
AbstractCompositeHashFunction.java 90 @Override public Hasher putLong(long l) {
92 hasher.putLong(l);
AbstractNonStreamingHashFunction.java 66 return newHasher(8).putLong(input).hash();
123 public Hasher putLong(long l) {
  /external/libgdx/backends/gdx-backend-android/src/com/badlogic/gdx/backends/android/
AndroidPreferences.java 51 public Preferences putLong (String key, long val) {
53 editor.putLong(key, val);
77 if (val.getValue() instanceof Long) putLong(val.getKey(), (Long)val.getValue());
  /frameworks/support/media-compat/api21/android/support/v4/media/
MediaMetadataCompatApi21.java 64 public static void putLong(Object builderObj, String key, long value) {
65 ((MediaMetadata.Builder)builderObj).putLong(key, value);
  /packages/apps/Messaging/src/com/android/messaging/receiver/
BootAndPackageReplacedReceiver.java 38 Factory.get().getApplicationPrefs().putLong(
  /external/lzma/Java/Tukaani/src/org/tukaani/xz/index/
IndexHash.java 40 buf.putLong(unpaddedSize);
41 buf.putLong(uncompressedSize);
  /external/sl4a/Common/src/com/googlecode/android_scripting/facade/
PreferencesFacade.java 80 e.putLong(key, (Long) value);
82 e.putLong(key, (Integer) value);
  /frameworks/base/packages/SystemUI/src/com/android/systemui/
Prefs.java 91 public static void putLong(Context context, @Key String key, long value) {
92 get(context).edit().putLong(key, value).apply();

Completed in 509 milliseconds

1 2 3 4 5 6 7 8 91011>>