OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:mCurrentBytes
(Results
1 - 4
of
4
) sorted by null
/packages/apps/Bluetooth/src/com/android/bluetooth/opp/
BluetoothOppTransferInfo.java
46
int
mCurrentBytes
;
BluetoothOppShareInfo.java
65
public int
mCurrentBytes
;
85
mCurrentBytes
= currentBytes;
/packages/providers/DownloadProvider/src/com/android/providers/downloads/
DownloadInfo.java
93
info.
mCurrentBytes
= getLong(Downloads.Impl.COLUMN_CURRENT_BYTES);
227
public long
mCurrentBytes
;
533
pw.printPair("
mCurrentBytes
",
mCurrentBytes
);
DownloadThread.java
125
public long
mCurrentBytes
= 0;
151
mCurrentBytes
= info.
mCurrentBytes
;
301
if (state.
mCurrentBytes
== state.mTotalBytes) {
476
state.
mCurrentBytes
+= bytesRead;
480
Log.v(Constants.TAG, "downloaded " + state.
mCurrentBytes
+ " for "
541
final long sampleSpeed = ((state.
mCurrentBytes
- state.mSpeedSampleBytes) * 1000)
556
state.mSpeedSampleBytes = state.
mCurrentBytes
;
559
if (state.
mCurrentBytes
- state.mBytesNotified > Constants.MIN_PROGRESS_STEP &&
562
values.put(Downloads.Impl.COLUMN_CURRENT_BYTES, state.
mCurrentBytes
);
[
all
...]
Completed in 2316 milliseconds