Searched defs:remoteDevice (Results 1 - 5 of 5) sorted by relevance

/packages/apps/Nfc/src/com/android/nfc/handover/
H A DPendingHandoverTransfer.java27 public BluetoothDevice remoteDevice; field in class:PendingHandoverTransfer
31 PendingHandoverTransfer(int id, boolean incoming, BluetoothDevice remoteDevice, argument
35 this.remoteDevice = remoteDevice;
45 BluetoothDevice remoteDevice = in.readParcelable(getClass().getClassLoader());
53 return new PendingHandoverTransfer(id, incoming, remoteDevice,
72 dest.writeParcelable(remoteDevice, 0);
H A DHandoverManager.java448 PendingHandoverTransfer registerInTransferLocked(BluetoothDevice remoteDevice) { argument
450 mHandoverTransferId++, true, remoteDevice, false, null);
/packages/apps/Bluetooth/src/com/android/bluetooth/opp/
H A DBluetoothOppPreference.java98 private String getChannelKey(BluetoothDevice remoteDevice, int uuid) { argument
99 return remoteDevice.getAddress() + "_" + Integer.toHexString(uuid);
102 public String getName(BluetoothDevice remoteDevice) { argument
103 if (remoteDevice.getAddress().equals("FF:FF:FF:00:00:00")) {
107 String name = mNames.get(remoteDevice.getAddress());
115 public int getChannel(BluetoothDevice remoteDevice, int uuid) { argument
116 String key = getChannelKey(remoteDevice, uuid);
121 if (V) Log.v(TAG, "getChannel for " + remoteDevice + "_" + Integer.toHexString(uuid) +
127 public void setName(BluetoothDevice remoteDevice, String name) { argument
128 if (V) Log.v(TAG, "Setname for " + remoteDevice
137 setChannel(BluetoothDevice remoteDevice, int uuid, int channel) argument
149 removeChannel(BluetoothDevice remoteDevice, int uuid) argument
[all...]
/packages/apps/Bluetooth/src/com/android/bluetooth/map/
H A DBluetoothMnsObexClient.java73 public BluetoothMnsObexClient(Context context, BluetoothDevice remoteDevice, argument
75 if (remoteDevice == null) {
83 mRemoteDevice = remoteDevice;
/packages/apps/Bluetooth/src/com/android/bluetooth/hfp/
H A DAtPhonebook.java260 public void handleCpbrCommand(String atString, int type, BluetoothDevice remoteDevice) { argument
339 if (checkAccessPermission(remoteDevice)) {
573 private boolean checkAccessPermission(BluetoothDevice remoteDevice) { argument
575 boolean trust = remoteDevice.getTrustState();
586 intent.putExtra(BluetoothDevice.EXTRA_DEVICE, remoteDevice);

Completed in 192 milliseconds