Home
last modified time | relevance | path

Searched refs:CURRENT_BYTES (Results 1 – 14 of 14) sorted by relevance

/packages/modules/Bluetooth/android/app/tests/unit/src/com/android/bluetooth/opp/
DBluetoothOppTransferActivityTest.java123 mCursorMockDataList.add(new CursorMockData(BluetoothShare.CURRENT_BYTES, 4, 0)); in onCreate_showSendOnGoingDialog()
147 new CursorMockData(BluetoothShare.CURRENT_BYTES, 4, 100)); in onCreate_showSendCompleteSuccessDialog()
169 mCursorMockDataList.add(new CursorMockData(BluetoothShare.CURRENT_BYTES, 4, 42)); in onCreate_showSendCompleteFailDialog()
191 mCursorMockDataList.add(new CursorMockData(BluetoothShare.CURRENT_BYTES, 4, 0)); in onCreate_showReceiveOnGoingDialog()
214 new CursorMockData(BluetoothShare.CURRENT_BYTES, 4, 100) in onCreate_showReceiveCompleteSuccessDialog()
238 mCursorMockDataList.add(new CursorMockData(BluetoothShare.CURRENT_BYTES, 4, 42)); in onCreate_showReceiveCompleteFailDialog()
DBluetoothOppNotificationTest.java99 BluetoothShare.TOTAL_BYTES, BluetoothShare.CURRENT_BYTES, BluetoothShare._DATA, in updateActiveNotification()
141 BluetoothShare.TOTAL_BYTES, BluetoothShare.CURRENT_BYTES, BluetoothShare._DATA, in updateCompletedNotification_withOutBoundShare_showsNoti()
180 BluetoothShare.TOTAL_BYTES, BluetoothShare.CURRENT_BYTES, BluetoothShare._DATA, in updateCompletedNotification_withInBoundShare_showsNoti()
220 BluetoothShare.TOTAL_BYTES, BluetoothShare.CURRENT_BYTES, BluetoothShare._DATA, in updateIncomingFileConfirmationNotification()
DBluetoothOppReceiverTest.java239 new BluetoothOppTestUtils.CursorMockData(BluetoothShare.CURRENT_BYTES, 4, 100), in onReceive_withActionTransferCompletedAndHandoverInitiated_contextSendBroadcast()
281 new BluetoothOppTestUtils.CursorMockData(BluetoothShare.CURRENT_BYTES, 4, 100), in onReceive_withActionTransferComplete_noBroadcastSent()
DIncomingFileConfirmActivityTest.java109 new BluetoothOppTestUtils.CursorMockData(BluetoothShare.CURRENT_BYTES, 4, 0), in setUp()
DBluetoothOppTransferHistoryTest.java105 new BluetoothOppTestUtils.CursorMockData(BluetoothShare.CURRENT_BYTES, 4, 0), in setUp()
DBluetoothOppUtilityTest.java255 new CursorMockData(BluetoothShare.CURRENT_BYTES, 4, currentBytesValue), in fillRecord_filledAllProperties()
/packages/modules/Bluetooth/android/app/src/com/android/bluetooth/opp/
DBluetoothOppObexClientSession.java443 updateValues.put(BluetoothShare.CURRENT_BYTES, 0); in sendFile()
497 updateValues.put(BluetoothShare.CURRENT_BYTES, position); in sendFile()
537 updateValues.put(BluetoothShare.CURRENT_BYTES, position); in sendFile()
DBluetoothShare.java207 public static final String CURRENT_BYTES = "current_bytes"; field in BluetoothShare
DBluetoothOppProvider.java153 + " INTEGER, " + BluetoothShare.CURRENT_BYTES + " INTEGER, " in createTable()
DBluetoothOppService.java779 cursor.getLong(cursor.getColumnIndexOrThrow(BluetoothShare.CURRENT_BYTES)), in insertShare()
937 cursor.getLong(cursor.getColumnIndexOrThrow(BluetoothShare.CURRENT_BYTES)); in updateShare()
DBluetoothOppObexServerSession.java501 updateValues.put(BluetoothShare.CURRENT_BYTES, position); in receiveFile()
DBluetoothOppUtility.java119 cursor.getLong(cursor.getColumnIndexOrThrow(BluetoothShare.CURRENT_BYTES)); in fillRecord()
DBluetoothOppNotification.java275 final int currentBytesIndex = cursor.getColumnIndexOrThrow(BluetoothShare.CURRENT_BYTES); in updateActiveNotification()
/packages/providers/DownloadProvider/src/com/android/providers/downloads/
DDownloadNotifier.java156 final int CURRENT_BYTES = 4; field
302 final long currentBytes = cursor.getLong(UpdateQuery.CURRENT_BYTES); in updateWithLocked()