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.java138 mCursorMockDataList.add(new CursorMockData(BluetoothShare.CURRENT_BYTES, 4, 0)); in onCreate_showSendOnGoingDialog()
160 mCursorMockDataList.add(new CursorMockData(BluetoothShare.CURRENT_BYTES, 4, 100)); in onCreate_showSendCompleteSuccessDialog()
182 mCursorMockDataList.add(new CursorMockData(BluetoothShare.CURRENT_BYTES, 4, 42)); in onCreate_showSendCompleteFailDialog()
204 mCursorMockDataList.add(new CursorMockData(BluetoothShare.CURRENT_BYTES, 4, 0)); in onCreate_showReceiveOnGoingDialog()
226 mCursorMockDataList.add(new CursorMockData(BluetoothShare.CURRENT_BYTES, 4, 100)); in onCreate_showReceiveCompleteSuccessDialog()
249 mCursorMockDataList.add(new CursorMockData(BluetoothShare.CURRENT_BYTES, 4, 42)); in onCreate_showReceiveCompleteFailDialog()
DBluetoothOppNotificationTest.java145 BluetoothShare.CURRENT_BYTES, in updateActiveNotification()
224 BluetoothShare.CURRENT_BYTES, in updateCompletedNotification_withOutBoundShare_showsNoti()
304 BluetoothShare.CURRENT_BYTES, in updateCompletedNotification_withInBoundShare_showsNoti()
384 BluetoothShare.TOTAL_BYTES, BluetoothShare.CURRENT_BYTES, in updateIncomingFileConfirmationNotification()
DBluetoothOppReceiverTest.java355 BluetoothShare.CURRENT_BYTES, 4, 100), in onReceive_withActionTransferCompletedAndHandoverInitiated_contextSendBroadcast()
411 BluetoothShare.CURRENT_BYTES, 4, 100), in onReceive_withActionTransferComplete_noBroadcastSent()
DBluetoothOppTransferHistoryTest.java119 BluetoothShare.CURRENT_BYTES, 4, 0), in setUp()
DIncomingFileConfirmActivityTest.java130 BluetoothShare.CURRENT_BYTES, 4, 0), in setUp()
DBluetoothOppUtilityTest.java305 new CursorMockData(BluetoothShare.CURRENT_BYTES, 4, currentBytesValue), in fillRecord_filledAllProperties()
/packages/modules/Bluetooth/android/app/src/com/android/bluetooth/opp/
DBluetoothShare.java169 public static final String CURRENT_BYTES = "current_bytes"; field in BluetoothShare
DBluetoothOppObexClientSession.java469 updateValues.put(BluetoothShare.CURRENT_BYTES, 0); in sendFile()
523 updateValues.put(BluetoothShare.CURRENT_BYTES, position); in sendFile()
564 updateValues.put(BluetoothShare.CURRENT_BYTES, position); in sendFile()
DBluetoothOppProvider.java171 + BluetoothShare.CURRENT_BYTES in createTable()
DBluetoothOppService.java862 cursor.getLong(cursor.getColumnIndexOrThrow(BluetoothShare.CURRENT_BYTES)), in insertShare()
1036 cursor.getLong(cursor.getColumnIndexOrThrow(BluetoothShare.CURRENT_BYTES)); in updateShare()
DBluetoothOppUtility.java120 cursor.getLong(cursor.getColumnIndexOrThrow(BluetoothShare.CURRENT_BYTES)); in fillRecord()
DBluetoothOppObexServerSession.java560 updateValues.put(BluetoothShare.CURRENT_BYTES, position); in receiveFile()
DBluetoothOppNotification.java309 final int currentBytesIndex = cursor.getColumnIndexOrThrow(BluetoothShare.CURRENT_BYTES); in updateActiveNotification()
/packages/providers/DownloadProvider/src/com/android/providers/downloads/
DDownloadNotifier.java165 final int CURRENT_BYTES = 4; field
315 final long currentBytes = cursor.getLong(UpdateQuery.CURRENT_BYTES); in updateWithLocked()