HomeSort by relevance Sort by last modified time
    Searched full:putlong (Results 1 - 25 of 108) sorted by null

1 2 3 4 5

  /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...]
  /dalvik/libcore/nio/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 122 public ByteBuffer putLong(int index, long value) {
127 public ByteBuffer putLong(long value) {
ReadOnlyHeapByteBuffer.java 129 public ByteBuffer putLong(int index, long value) {
134 public ByteBuffer putLong(long value) {
MappedByteBufferAdapter.java 347 public ByteBuffer putLong(int index, long value) {
350 this.wrapped.putLong(index, value);
355 public ByteBuffer putLong(long value) {
358 this.wrapped.putLong(value);
LongToByteBufferAdapter.java 187 byteBuffer.putLong(position++ << 3, c);
196 byteBuffer.putLong(index << 3, c);
ReadWriteDirectByteBuffer.java 283 public ByteBuffer putLong(long value) {
294 public ByteBuffer putLong(int index, long value) {
  /frameworks/base/common/java/com/android/common/
OperationScheduler.java 201 if (time > max) mStorage.edit().putLong(name, (time = max)).commit();
214 mStorage.edit().putLong(PREFIX + "triggerTimeMillis", millis).commit();
226 .putLong(PREFIX + "moratoriumTimeMillis", millis)
227 .putLong(PREFIX + "moratoriumSetTimeMillis", currentTimeMillis())
277 .putLong(PREFIX + "lastSuccessTimeMillis", currentTimeMillis()).commit();
286 mStorage.edit().putLong(PREFIX + "lastErrorTimeMillis", currentTimeMillis()).commit();
  /development/tutorials/NotepadCodeLab/Notepadv2Solution/src/com/android/demo/notepad2/
NoteEdit.java 65 bundle.putLong(NotesDbAdapter.KEY_ROWID, mRowId);
  /development/tutorials/NotepadCodeLab/Notepadv3/src/com/android/demo/notepad3/
NoteEdit.java 65 bundle.putLong(NotesDbAdapter.KEY_ROWID, mRowId);
  /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));
CursorWindowTest.java 346 method = "putLong",
463 // Test putLong, getLong, getInt, getString , getShort, getFloat, getDouble, isBlob.
464 assertTrue(cursorWindow.putLong(NUMBER_LONG_INTEGER, 0, 2));
666 cursorWindow.putLong(i, i, 0);
  /cts/tests/tests/provider/src/android/provider/cts/
Settings_SecureTest.java 52 method = "putLong",
104 assertTrue(Secure.putLong(cr, "LongField", 20));
Settings_SystemTest.java 52 method = "putLong",
129 assertTrue(System.putLong(cr, longField, 20l));
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
Hints.java 109 editor.putLong(PREF_VOICE_INPUT_LAST_TIME_USED, System.currentTimeMillis());
171 editor.putLong(PREF_VOICE_HINT_LAST_TIME_SHOWN, System.currentTimeMillis());
  /packages/apps/Settings/src/com/android/settings/bluetooth/
BluetoothDiscoverableEnabler.java 146 editor.putLong(SHARED_PREFERENCES_KEY_DISCOVERABLE_END_TIMESTAMP, endTimestamp);
  /dalvik/libcore/prefs/src/test/java/org/apache/harmony/prefs/tests/java/util/prefs/
AbstractPreferencesTest.java 199 pref.putLong(keyArray[2], new Long(Long.MIN_VALUE));
313 pref.putLong("LongValue", new Long(Long.MIN_VALUE));
342 method = "putLong",
346 pref.putLong("LongValue", new Long(299792458));
352 pref.putLong(null, new Long(1));
366 pref.putLong(new String(sb), new Long(1));
375 pref.putLong("LongValue", new Long(1));
391 pref.putLong("LongValue", new Long(Long.MIN_VALUE));
    [all...]
PreferencesTest.java 548 method = "putLong",
650 p.putLong(null, 1l);
    [all...]
  /dalvik/vm/native/
sun_misc_Unsafe.c 268 * public native void putLong(Object obj, long offset, long newValue);
342 { "putLong", "(Ljava/lang/Object;JJ)V",
  /cts/tests/tests/os/src/android/os/cts/
BundleTest.java 800 notes = "getLong should only return the Long set by putLong",
806 notes = "getLong should only return the Long set by putLong",
807 method = "putLong",
815 mBundle.putLong(KEY, l);
824 notes = "getLong should only return the Long set by putLong",
830 notes = "getLong should only return the Long set by putLong",
831 method = "putLong",
840 mBundle.putLong(KEY, l2);
    [all...]
  /external/tcpdump/
nameser.h 302 * Warning: PUTLONG --no-longer-- destroys its first argument. if you
305 #define PUTLONG(l, cp) { \
  /frameworks/base/core/jni/
CursorWindow.h 162 bool putLong(unsigned int row, unsigned int col, int64_t value);
  /frameworks/base/core/tests/coretests/src/android/database/
CursorWindowTest.java 104 assertTrue(window.putLong(int1, 0, 1));
  /frameworks/base/services/java/com/android/server/
BootReceiver.java 168 prefs.edit().putLong(filename, fileTime).commit();
  /packages/apps/Calendar/src/com/android/calendar/
AgendaActivity.java 166 outState.putLong(BUNDLE_KEY_RESTORE_TIME, firstVisibleTime);

Completed in 488 milliseconds

1 2 3 4 5