Searched refs:rxPhy (Results 1 – 4 of 4) sorted by relevance
/frameworks/base/core/java/android/bluetooth/ |
D | BluetoothGattServerCallback.java | 167 public void onPhyUpdate(BluetoothDevice device, int txPhy, int rxPhy, int status) { in onPhyUpdate() argument 181 public void onPhyRead(BluetoothDevice device, int txPhy, int rxPhy, int status) { in onPhyRead() argument
|
D | BluetoothGattCallback.java | 38 public void onPhyUpdate(BluetoothGatt gatt, int txPhy, int rxPhy, int status) { in onPhyUpdate() argument 52 public void onPhyRead(BluetoothGatt gatt, int txPhy, int rxPhy, int status) { in onPhyRead() argument
|
D | BluetoothGattServer.java | 321 public void onPhyUpdate(String address, int txPhy, int rxPhy, int status) { 325 + ", rxPHy=" + rxPhy); 332 mCallback.onPhyUpdate(device, txPhy, rxPhy, status); 343 public void onPhyRead(String address, int txPhy, int rxPhy, int status) { 347 + ", rxPHy=" + rxPhy); 354 mCallback.onPhyRead(device, txPhy, rxPhy, status); 635 public void setPreferredPhy(BluetoothDevice device, int txPhy, int rxPhy, int phyOptions) { in setPreferredPhy() argument 637 mService.serverSetPreferredPhy(mServerIf, device.getAddress(), txPhy, rxPhy, in setPreferredPhy()
|
D | BluetoothGatt.java | 214 public void onPhyUpdate(String address, int txPhy, int rxPhy, int status) { 217 + " address=" + address + " txPhy=" + txPhy + " rxPhy=" + rxPhy); 228 callback.onPhyUpdate(BluetoothGatt.this, txPhy, rxPhy, status); 239 public void onPhyRead(String address, int txPhy, int rxPhy, int status) { 242 + " address=" + address + " txPhy=" + txPhy + " rxPhy=" + rxPhy); 253 callback.onPhyRead(BluetoothGatt.this, txPhy, rxPhy, status); 1016 public void setPreferredPhy(int txPhy, int rxPhy, int phyOptions) { in setPreferredPhy() argument 1018 mService.clientSetPreferredPhy(mClientIf, mDevice.getAddress(), txPhy, rxPhy, in setPreferredPhy()
|