Home
last modified time | relevance | path

Searched refs:txPhy (Results 1 – 7 of 7) 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.java173 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
DBluetoothGattServer.java302 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()
DIBluetoothGattCallback.aidl29 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
DIBluetoothGattServerCallback.aidl43 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
DBluetoothGatt.java188 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()
DIBluetoothGatt.aidl79 …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