OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:putlong
(Results
1 - 25
of
158
) 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
...]
/frameworks/base/tests/DataIdleTest/src/com/android/tests/dataidle/
DataIdleTest.java
101
result.
putLong
(String.format(labelTemplate, "rxBytes"), statsEntry.rxBytes);
102
result.
putLong
(String.format(labelTemplate, "txBytes"), statsEntry.txBytes);
109
result.
putLong
("Total rx Bytes", rxBytes);
110
result.
putLong
("Total tx Bytes", txBytes);
111
result.
putLong
("Total rx Packets", rxPackets);
112
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);
/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
(
/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
128
public ByteBuffer
putLong
(int index, long value) {
133
public ByteBuffer
putLong
(long value) {
ReadWriteHeapByteBuffer.java
175
return
putLong
(Double.doubleToRawLongBits(value));
180
return
putLong
(index, Double.doubleToRawLongBits(value));
212
public ByteBuffer
putLong
(int index, long value) {
219
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);
LongToByteBufferAdapter.java
148
byteBuffer.
putLong
(position++ * SizeOf.LONG, c);
155
byteBuffer.
putLong
(index * SizeOf.LONG, c);
/development/cmds/monkey/src/com/android/commands/monkey/
MonkeyActivityEvent.java
64
args.
putLong
("alarmTime", mAlarmTime);
/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
185
public Editor
putLong
(String key, long value) {
187
mEditorGlobal.
putLong
(key, value);
189
mEditorLocal.
putLong
(key, value);
/packages/apps/Browser/src/com/android/browser/widget/
BookmarkThumbnailWidgetService.java
106
prefs.edit().
putLong
(STATE_CURRENT_FOLDER, fid).commit();
115
.
putLong
(STATE_CURRENT_FOLDER, rootFolder)
116
.
putLong
(STATE_ROOT_FOLDER, rootFolder)
192
.
putLong
(STATE_CURRENT_FOLDER, mCurrentFolder)
193
.
putLong
(STATE_ROOT_FOLDER, mRootFolder)