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

1 2 3 4

  /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...]
  /libcore/luni/src/main/java/java/nio/
ReadWriteHeapByteBuffer.java 137 return putLong(Double.doubleToRawLongBits(value));
142 return putLong(index, Double.doubleToRawLongBits(value));
176 public ByteBuffer putLong(int index, long value) {
185 public ByteBuffer putLong(long value) {
ReadOnlyDirectByteBuffer.java 120 public ByteBuffer putLong(int index, long value) {
125 public ByteBuffer putLong(long value) {
ReadOnlyHeapByteBuffer.java 129 public ByteBuffer putLong(int index, long value) {
134 public ByteBuffer putLong(long value) {
LongToByteBufferAdapter.java 187 byteBuffer.putLong(position++ << 3, c);
196 byteBuffer.putLong(index << 3, c);
MappedByteBufferAdapter.java 349 public ByteBuffer putLong(int index, long value) {
352 this.wrapped.putLong(index, value);
357 public ByteBuffer putLong(long value) {
360 this.wrapped.putLong(value);
ByteBuffer.java     [all...]
ReadWriteDirectByteBuffer.java 319 public ByteBuffer putLong(long value) {
330 public ByteBuffer putLong(int index, long value) {
  /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 65 args.putLong("alarmTime", mAlarmTime);
  /frameworks/base/core/java/android/content/
SharedPreferences.java 95 Editor putLong(String key, long value);
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
Hints.java 108 editor.putLong(PREF_VOICE_INPUT_LAST_TIME_USED, System.currentTimeMillis());
170 editor.putLong(PREF_VOICE_HINT_LAST_TIME_SHOWN, System.currentTimeMillis());
  /development/tutorials/NotepadCodeLab/Notepadv2Solution/src/com/android/demo/notepad2/
NoteEdit.java 66 bundle.putLong(NotesDbAdapter.KEY_ROWID, mRowId);
  /development/tutorials/NotepadCodeLab/Notepadv3/src/com/android/demo/notepad3/
NoteEdit.java 66 bundle.putLong(NotesDbAdapter.KEY_ROWID, mRowId);
  /packages/apps/Camera/src/com/android/camera/
ComboPreferences.java 181 public Editor putLong(String key, long value) {
183 mEditorGlobal.putLong(key, value);
185 mEditorLocal.putLong(key, value);
  /cts/tests/tests/database/src/android/database/cts/
AbstractWindowedCursorTest.java 152 assertTrue(mWindow.putLong((long) shortNumber, ROW_INDEX0, COLUMN_INDEX0));
168 assertTrue(mWindow.putLong(longNumber, ROW_INDEX0, COLUMN_INDEX0));
184 assertTrue(mWindow.putLong((long) intNumber, ROW_INDEX0, COLUMN_INDEX0));
  /frameworks/base/core/jni/
CursorWindow.h 162 bool putLong(unsigned int row, unsigned int col, int64_t value);
  /libcore/luni/src/main/java/sun/misc/
Unsafe.java 282 public native void putLong(Object obj, long offset, long newValue);
  /frameworks/base/core/java/android/app/
Instrumentation.java     [all...]
  /frameworks/base/core/tests/coretests/src/android/database/
CursorWindowTest.java 104 assertTrue(window.putLong(int1, 0, 1));
  /libcore/luni/src/main/java/java/util/prefs/
Preferences.java 694 public abstract void putLong(String key, long value);
    [all...]
  /packages/apps/Gallery3D/src/com/cooliris/picasa/
PicasaService.java 57 extras.putLong(KEY_ID, id);
  /packages/apps/Settings/src/com/android/settings/bluetooth/
BluetoothDiscoverableEnabler.java 146 editor.putLong(SHARED_PREFERENCES_KEY_DISCOVERABLE_END_TIMESTAMP, endTimestamp);
  /development/samples/Snake/src/com/example/android/snake/
SnakeView.java 208 map.putLong("mMoveDelay", Long.valueOf(mMoveDelay));
209 map.putLong("mScore", Long.valueOf(mScore));
  /libcore/luni/src/main/java/java/util/concurrent/atomic/
AtomicLongFieldUpdater.java 391 unsafe.putLong(obj, offset, update);
403 unsafe.putLong(obj, offset, newValue);

Completed in 1105 milliseconds

1 2 3 4