/frameworks/base/core/java/android/bluetooth/ |
D | BluetoothGattCallback.java | 36 public void onPhyUpdate(BluetoothGatt gatt, int txPhy, int rxPhy, int status) { in onPhyUpdate() argument 50 public void onPhyRead(BluetoothGatt gatt, int txPhy, int rxPhy, int status) { in onPhyRead() argument
|
D | BluetoothGattServerCallback.java | 173 public void onPhyUpdate(BluetoothDevice device, int txPhy, int rxPhy, int status) { in onPhyUpdate() argument 187 public void onPhyRead(BluetoothDevice device, int txPhy, int rxPhy, int status) { in onPhyRead() argument
|
D | BluetoothGattServer.java | 302 public void onPhyUpdate(String address, int txPhy, int rxPhy, int status) { 303 if (DBG) Log.d(TAG, "onPhyUpdate() - " + "device=" + address + ", txPHy=" + txPhy 310 mCallback.onPhyUpdate(device, txPhy, rxPhy, status); 321 public void onPhyRead(String address, int txPhy, int rxPhy, int status) { 322 if (DBG) Log.d(TAG, "onPhyUpdate() - " + "device=" + address + ", txPHy=" + txPhy 329 mCallback.onPhyRead(device, txPhy, rxPhy, status); 570 public void setPreferredPhy(BluetoothDevice device, int txPhy, int rxPhy, int phyOptions) { in setPreferredPhy() argument 572 mService.serverSetPreferredPhy(mServerIf, device.getAddress(), txPhy, rxPhy, in setPreferredPhy()
|
D | IBluetoothGattCallback.aidl | 29 void onPhyUpdate(in String address, in int txPhy, in int rxPhy, in int status); in onPhyUpdate() argument 30 void onPhyRead(in String address, in int txPhy, in int rxPhy, in int status); in onPhyRead() argument
|
D | IBluetoothGattServerCallback.aidl | 43 void onPhyUpdate(in String address, in int txPhy, in int rxPhy, in int status); in onPhyUpdate() argument 44 void onPhyRead(in String address, in int txPhy, in int rxPhy, in int status); in onPhyRead() argument
|
D | BluetoothGatt.java | 188 public void onPhyUpdate(String address, int txPhy, int rxPhy, int status) { 190 + " address=" + address + " txPhy=" + txPhy + " rxPhy=" + rxPhy); 200 callback.onPhyUpdate(BluetoothGatt.this, txPhy, rxPhy, status); 211 public void onPhyRead(String address, int txPhy, int rxPhy, int status) { 213 + " address=" + address + " txPhy=" + txPhy + " rxPhy=" + rxPhy); 223 callback.onPhyRead(BluetoothGatt.this, txPhy, rxPhy, status); 883 public void setPreferredPhy(int txPhy, int rxPhy, int phyOptions) { in setPreferredPhy() argument 885 mService.clientSetPreferredPhy(mClientIf, mDevice.getAddress(), txPhy, rxPhy, in setPreferredPhy()
|
D | IBluetoothGatt.aidl | 79 …void clientSetPreferredPhy(in int clientIf, in String address, in int txPhy, in int rxPhy, in int … in clientSetPreferredPhy() argument 103 …void serverSetPreferredPhy(in int clientIf, in String address, in int txPhy, in int rxPhy, in int … in serverSetPreferredPhy() argument
|