OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:pairingintent
(Results
1 - 1
of
1
) sorted by null
/packages/apps/Settings/src/com/android/settings/bluetooth/
BluetoothPairingRequest.java
51
Intent
pairingIntent
= new Intent();
52
pairingIntent
.setClass(context, BluetoothPairingDialog.class);
53
pairingIntent
.putExtra(BluetoothDevice.EXTRA_DEVICE, device);
54
pairingIntent
.putExtra(BluetoothDevice.EXTRA_PAIRING_VARIANT, type);
60
pairingIntent
.putExtra(BluetoothDevice.EXTRA_PAIRING_KEY, pairingKey);
62
pairingIntent
.setAction(BluetoothDevice.ACTION_PAIRING_REQUEST);
63
pairingIntent
.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
72
context.startActivity(
pairingIntent
);
81
pairingIntent
, PendingIntent.FLAG_ONE_SHOT);
Completed in 1539 milliseconds