Searched refs:putLong (Results 1 - 25 of 31) sorted by relevance

12

/frameworks/base/core/java/android/os/
H A DPerformanceCollector.java393 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_FRE
[all...]
/frameworks/base/tests/DataIdleTest/src/com/android/tests/dataidle/
H A DDataIdleTest.java106 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/tests/utillib/src/android/test/
H A DBandwidthTestCase.java149 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/ex/common/java/com/android/common/
H A DOperationScheduler.java203 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());
/frameworks/base/core/java/android/content/
H A DSharedPreferences.java114 Editor putLong(String key, long value); method in interface:SharedPreferences.Editor
H A DIntent.java3733 else if (uri.startsWith("l.", i)) b.putLong(key, Long.parseLong(value));
3891 intent.mExtras.putLong(key, Long.parseLong(value));
5221 mExtras.putLong(name, value);
/frameworks/base/core/tests/coretests/src/android/database/
H A DCursorWindowTest.java86 assertTrue(window.putLong(int1, 0, 1));
/frameworks/base/services/java/com/android/server/am/
H A DCoreSettingsObserver.java103 snapshot.putLong(setting, value);
/frameworks/base/core/java/android/app/
H A DInstrumentation.java1290 results.putLong("global_alloc_count", Debug.getGlobalAllocCount());
1291 results.putLong("global_alloc_size", Debug.getGlobalAllocSize());
1292 results.putLong("global_freed_count", Debug.getGlobalFreedCount());
1293 results.putLong("global_freed_size", Debug.getGlobalFreedSize());
1294 results.putLong("gc_invocation_count", Debug.getGlobalGcInvocationCount());
1304 results.putLong("sent_transactions", Debug.getBinderSentTransactions());
1305 results.putLong("received_transactions", Debug.getBinderReceivedTransactions());
H A DSharedPreferencesImpl.java326 public Editor putLong(String key, long value) { method in class:SharedPreferencesImpl.EditorImpl
/frameworks/base/include/androidfw/
H A DCursorWindow.h106 status_t putLong(uint32_t row, uint32_t column, int64_t value);
/frameworks/base/services/java/com/android/server/
H A DBootReceiver.java160 prefs.edit().putLong(filename, fileTime).apply();
/frameworks/base/core/tests/bandwidthtests/src/com/android/bandwidthtest/
H A DBandwidthTest.java342 results.putLong(label + "tx", entry.txBytes);
343 results.putLong(label + "rx", entry.rxBytes);
/frameworks/base/test-runner/src/android/test/
H A DInstrumentationTestRunner.java900 mTestResult.putLong(index + PerformanceCollector.METRIC_KEY_CPU_TIME,
902 mTestResult.putLong(index + PerformanceCollector.METRIC_KEY_EXECUTION_TIME,
909 mTestResult.putLong(label, value);
/frameworks/base/media/java/android/media/
H A DRemoteControlClient.java468 public synchronized MetadataEditor putLong(int key, long value) method in class:RemoteControlClient.MetadataEditor
477 mEditorMetadata.putLong(String.valueOf(key), value);
H A DMiniThumbFile.java203 mBuffer.putLong(magic);
/frameworks/base/cmds/requestsync/src/com/android/commands/requestsync/
H A DRequestSync.java131 mExtras.putLong(key, Long.valueOf(value));
/frameworks/base/core/java/android/database/
H A DCursorWindow.java635 public boolean putLong(long value, int row, int column) { method in class:CursorWindow
/frameworks/base/core/tests/ConnectivityManagerTest/src/com/android/connectivitymanagertest/stress/
H A DWifiStressTest.java231 Settings.Global.putLong(mRunner.getContext().getContentResolver(),
/frameworks/base/libs/androidfw/
H A DCursorWindow.cpp305 status_t CursorWindow::putLong(uint32_t row, uint32_t column, int64_t value) { function in class:android::CursorWindow
/frameworks/base/services/tests/servicestests/src/com/android/server/
H A DThrottleServiceTest.java245 Settings.Global.putLong(resolver, Settings.Global.THROTTLE_THRESHOLD_BYTES, thresholdBytes);
/frameworks/base/core/java/android/preference/
H A DPreference.java1570 editor.putLong(mKey, value);
/frameworks/base/core/jni/
H A Dandroid_database_CursorWindow.cpp438 status_t status = window->putLong(row, column, value);
/frameworks/base/core/tests/coretests/src/android/content/
H A DSyncStorageEngineTest.java144 extras2.putLong("b", 2);
/frameworks/base/core/tests/coretests/src/android/os/
H A DPerformanceCollectorTest.java514 timingResults.putLong(label, value);

Completed in 365 milliseconds

12