OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:mCurrentBytes
(Results
1 - 7
of
7
) sorted by null
/packages/apps/Bluetooth/src/com/android/bluetooth/opp/
BluetoothOppTransferInfo.java
46
long
mCurrentBytes
;
BluetoothOppShareInfo.java
65
public long
mCurrentBytes
;
85
mCurrentBytes
= currentBytes;
BluetoothOppTransferActivity.java
430
if (V) Log.v(TAG, "
mCurrentBytes
: " + mTransInfo.
mCurrentBytes
+
432
(int)((mTransInfo.
mCurrentBytes
* 100) / mTransInfo.mTotalBytes) + "%)");
433
mProgressTransfer.setProgress((int)((mTransInfo.
mCurrentBytes
* 100) /
440
mTransInfo.
mCurrentBytes
));
BluetoothOppUtility.java
92
info.
mCurrentBytes
= cursor.getLong(cursor
BluetoothOppService.java
600
Log.v(TAG, "CURRENT : " + info.
mCurrentBytes
);
734
info.
mCurrentBytes
= cursor.getLong(cursor
[
all
...]
/packages/providers/DownloadProvider/src/com/android/providers/downloads/
DownloadThread.java
148
public long
mCurrentBytes
;
169
mCurrentBytes
= info.
mCurrentBytes
;
183
values.put(Downloads.Impl.COLUMN_CURRENT_BYTES,
mCurrentBytes
);
311
mInfoDelta.mTotalBytes = mInfoDelta.
mCurrentBytes
;
408
final boolean resuming = mInfoDelta.
mCurrentBytes
!= 0;
589
Os.lseek(outFd, mInfoDelta.
mCurrentBytes
, OsConstants.SEEK_SET);
657
final long newBytes = (mInfoDelta.
mCurrentBytes
+ len) - curSize;
665
mInfoDelta.
mCurrentBytes
+= len;
677
if (mInfoDelta.mTotalBytes != -1 && mInfoDelta.
mCurrentBytes
!= mInfoDelta.mTotalBytes)
[
all
...]
DownloadInfo.java
86
info.
mCurrentBytes
= getLong(Downloads.Impl.COLUMN_CURRENT_BYTES);
172
public long
mCurrentBytes
;
429
pw.printPair("
mCurrentBytes
",
mCurrentBytes
);
Completed in 233 milliseconds