OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:pairingintent
(Results
1 - 5
of
5
) sorted by null
/packages/apps/TvSettings/Settings/src/com/android/tv/settings/accessories/
BluetoothPairingRequest.java
43
Intent
pairingIntent
= new Intent();
44
pairingIntent
.setClass(context, BluetoothPairingDialog.class);
45
pairingIntent
.putExtra(BluetoothDevice.EXTRA_DEVICE, device);
46
pairingIntent
.putExtra(BluetoothDevice.EXTRA_PAIRING_VARIANT, type);
52
pairingIntent
.putExtra(BluetoothDevice.EXTRA_PAIRING_KEY, pairingKey);
54
pairingIntent
.setAction(BluetoothDevice.ACTION_PAIRING_REQUEST);
55
pairingIntent
.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
59
context.startActivity(
pairingIntent
);
/packages/apps/Settings/src/com/android/settings/bluetooth/
BluetoothPairingService.java
58
Intent
pairingIntent
= new Intent();
59
pairingIntent
.setClass(context, BluetoothPairingDialog.class);
60
pairingIntent
.putExtra(BluetoothDevice.EXTRA_DEVICE, device);
61
pairingIntent
.putExtra(BluetoothDevice.EXTRA_PAIRING_VARIANT, type);
67
pairingIntent
.putExtra(BluetoothDevice.EXTRA_PAIRING_KEY, pairingKey);
69
pairingIntent
.setAction(BluetoothDevice.ACTION_PAIRING_REQUEST);
70
pairingIntent
.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
71
return
pairingIntent
;
BluetoothPairingRequest.java
42
Intent
pairingIntent
= BluetoothPairingService.getPairingDialogIntent(context, intent);
55
context.startActivityAsUser(
pairingIntent
, UserHandle.CURRENT);
/packages/apps/Car/Settings/src/com/android/car/settings/bluetooth/
BluetoothPairingService.java
58
Intent
pairingIntent
= new Intent();
59
pairingIntent
.setClass(context, BluetoothPairingDialog.class);
60
pairingIntent
.putExtra(BluetoothDevice.EXTRA_DEVICE, device);
61
pairingIntent
.putExtra(BluetoothDevice.EXTRA_PAIRING_VARIANT, type);
67
pairingIntent
.putExtra(BluetoothDevice.EXTRA_PAIRING_KEY, pairingKey);
69
pairingIntent
.setAction(BluetoothDevice.ACTION_PAIRING_REQUEST);
70
return
pairingIntent
;
BluetoothPairingRequest.java
42
Intent
pairingIntent
= BluetoothPairingService.getPairingDialogIntent(context, intent);
55
context.startActivityAsUser(
pairingIntent
, UserHandle.CURRENT);
Completed in 306 milliseconds