Searched refs:device (Results 51 - 58 of 58) sorted by relevance

123

/packages/apps/Nfc/src/com/android/nfc/handover/
H A DHandoverTransfer.java126 void whitelistOppDevice(BluetoothDevice device) { argument
127 if (DBG) Log.d(TAG, "Whitelisting " + device + " for BT OPP");
129 intent.putExtra(BluetoothDevice.EXTRA_DEVICE, device);
140 // We're still receiving data from this device - keep it in
H A DHandoverService.java44 static final String EXTRA_HEADSET_DEVICE = "device";
178 // Remote device will connect and finish the transfer
183 BluetoothDevice device = (BluetoothDevice) msgData.getParcelable(EXTRA_HEADSET_DEVICE);
186 device, name, HandoverService.this);
254 // device - it will automatically get combined
/packages/apps/Settings/src/com/android/settings/bluetooth/
H A DBluetoothPairingDialog.java48 * for pairing with a remote Bluetooth device. It is an activity that appears as a dialog.
78 BluetoothDevice device = intent.getParcelableExtra(BluetoothDevice.EXTRA_DEVICE);
79 if (device == null || device.equals(mDevice)) {
H A DBluetoothSettings.java199 getFragmentManager(), "rename device");
248 // This device
354 // User clicked on advanced options icon for a device in the list
356 CachedBluetoothDevice device = (CachedBluetoothDevice) v.getTag();
359 args.putParcelable(DeviceProfilesSettings.EXTRA_DEVICE, device.getDevice());
378 // Only paired device have an associated advanced settings screen
H A DCachedBluetoothDevice.java37 * CachedBluetoothDevice represents a remote Bluetooth device. It contains
38 * attributes of the device (such as the address, name, RSSI, etc.) and
39 * functionality that can be performed on the device (connect, pair, disconnect,
62 // Device supports PANU but not NAP: remove PanProfile after device disconnects from NAP
102 * Describes the current device and profile for logging.
105 * @return Description of the device and profile
141 Log.d(TAG, "Removing PanProfile from device after NAP disconnect");
151 BluetoothDevice device) {
155 mDevice = device;
246 * Connect this device t
148 CachedBluetoothDevice(Context context, LocalBluetoothAdapter adapter, LocalBluetoothProfileManager profileManager, BluetoothDevice device) argument
[all...]
/packages/apps/Bluetooth/src/com/android/bluetooth/pbap/
H A DBluetoothPbapService.java215 + "device does not have BT or device is not ready");
548 + sRemoteDeviceName + " automatically as trusted device");
748 public boolean isConnected(BluetoothDevice device) {
755 return mState == BluetoothPbap.STATE_CONNECTED && mRemoteDevice.equals(device);
758 public boolean connect(BluetoothDevice device) {
/packages/apps/Phone/src/com/android/phone/
H A DInCallScreen.java195 // (There may be more than one Phone instance on the device, so it's wrong
441 // Make sure this is a voice-capable device.
444 // non-voice-capable device, since this activity is not exported by
448 Log.wtf(LOG_TAG, "onCreate() reached on non-voice-capable device");
678 // the user pressing POWER to wake up the device, causing
809 // If the device is put to sleep as the phone call is ending,
811 // event gets handled AFTER the device goes to sleep and wakes
817 // pauses the device (including the cleanup event) and
973 * entire uptime of the device. This noticeably improves the UI
1187 "Received ACTION_DISPLAY_ACTIVATION_SCREEN intent on non-OTASP-capable device
[all...]
/packages/apps/VoiceDialer/src/com/android/voicedialer/
H A DVoiceDialerActivity.java448 BluetoothDevice device = intent.getParcelableExtra(BluetoothDevice.EXTRA_DEVICE);
454 if (device == null) {
457 mBluetoothDevice = device;
785 // interact with the device in any way besides voice

Completed in 100 milliseconds

123