Home
last modified time | relevance | path

Searched refs:EXTRA_DIRECTION (Results 1 – 5 of 5) sorted by relevance

/packages/modules/Bluetooth/android/app/tests/unit/src/com/android/bluetooth/opp/
DBluetoothOppTransferHistoryTest.java161 mIntent.putExtra(Constants.EXTRA_DIRECTION, BluetoothShare.DIRECTION_INBOUND); in onCreate_withDirectionInbound_displayInboundHistory()
184 mIntent.putExtra(Constants.EXTRA_DIRECTION, BluetoothShare.DIRECTION_OUTBOUND); in onCreate_withDirectionOutbound_displayOutboundHistory()
199 mIntent.putExtra(Constants.EXTRA_DIRECTION, BluetoothShare.DIRECTION_INBOUND); in onOptionsItemSelected_clearAllSelected_promptWarning()
DBluetoothOppReceiverTest.java207 intended(hasExtra(Constants.EXTRA_DIRECTION, BluetoothShare.DIRECTION_OUTBOUND)); in onReceive_withActionOutboundTransfer_startsTransferHistoryActivity()
228 intended(hasExtra(Constants.EXTRA_DIRECTION, BluetoothShare.DIRECTION_INBOUND)); in onReceive_withActionInboundTransfer_startsTransferHistoryActivity()
/packages/modules/Bluetooth/android/app/src/com/android/bluetooth/opp/
DBluetoothOppReceiver.java173 in.putExtra(Constants.EXTRA_DIRECTION, BluetoothShare.DIRECTION_OUTBOUND); in onReceive()
181 in.putExtra(Constants.EXTRA_DIRECTION, BluetoothShare.DIRECTION_INBOUND); in onReceive()
DConstants.java86 static final String EXTRA_DIRECTION = "android.btopp.intent.extra.DIRECTION"; field in Constants
DBluetoothOppTransferHistory.java106 int dir = getIntent().getIntExtra(Constants.EXTRA_DIRECTION, 0); in onCreate()