Home
last modified time | relevance | path

Searched refs:rxPhy (Results 1 – 4 of 4) sorted by relevance

/frameworks/base/core/java/android/bluetooth/
DBluetoothGattCallback.java36 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
DBluetoothGattServerCallback.java167 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
DBluetoothGattServer.java312 public void onPhyUpdate(String address, int txPhy, int rxPhy, int status) {
316 + ", rxPHy=" + rxPhy);
323 mCallback.onPhyUpdate(device, txPhy, rxPhy, status);
334 public void onPhyRead(String address, int txPhy, int rxPhy, int status) {
338 + ", rxPHy=" + rxPhy);
345 mCallback.onPhyRead(device, txPhy, rxPhy, status);
593 public void setPreferredPhy(BluetoothDevice device, int txPhy, int rxPhy, int phyOptions) { in setPreferredPhy() argument
595 mService.serverSetPreferredPhy(mServerIf, device.getAddress(), txPhy, rxPhy, in setPreferredPhy()
DBluetoothGatt.java205 public void onPhyUpdate(String address, int txPhy, int rxPhy, int status) {
208 + " address=" + address + " txPhy=" + txPhy + " rxPhy=" + rxPhy);
219 callback.onPhyUpdate(BluetoothGatt.this, txPhy, rxPhy, status);
230 public void onPhyRead(String address, int txPhy, int rxPhy, int status) {
233 + " address=" + address + " txPhy=" + txPhy + " rxPhy=" + rxPhy);
244 callback.onPhyRead(BluetoothGatt.this, txPhy, rxPhy, status);
942 public void setPreferredPhy(int txPhy, int rxPhy, int phyOptions) { in setPreferredPhy() argument
944 mService.clientSetPreferredPhy(mClientIf, mDevice.getAddress(), txPhy, rxPhy, in setPreferredPhy()