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

/frameworks/base/core/java/android/bluetooth/
H A DBluetoothGattCallback.java31 * @param rxPhy the receiver PHY in use. One of {@link BluetoothDevice#PHY_LE_1M}, {@link
36 public void onPhyUpdate(BluetoothGatt gatt, int txPhy, int rxPhy, int status) { argument
45 * @param rxPhy the receiver PHY in use. One of {@link BluetoothDevice#PHY_LE_1M}, {@link
50 public void onPhyRead(BluetoothGatt gatt, int txPhy, int rxPhy, int status) { argument
H A DBluetoothGattServerCallback.java162 * @param rxPhy the receiver PHY in use. One of {@link BluetoothDevice#PHY_LE_1M}, {@link
167 public void onPhyUpdate(BluetoothDevice device, int txPhy, int rxPhy, int status) { argument
176 * @param rxPhy the receiver PHY in use. One of {@link BluetoothDevice#PHY_LE_1M}, {@link
181 public void onPhyRead(BluetoothDevice device, int txPhy, int rxPhy, int status) { argument
H A 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);
586 * @param rxPhy preferred receiver PHY. Bitwise OR of any of {@link
593 public void setPreferredPhy(BluetoothDevice device, int txPhy, int rxPhy, int phyOptions) { argument
595 mService.serverSetPreferredPhy(mServerIf, device.getAddress(), txPhy, rxPhy,
H A DBluetoothGatt.java195 public void onPhyUpdate(String address, int txPhy, int rxPhy, int status) {
198 + " address=" + address + " txPhy=" + txPhy + " rxPhy=" + rxPhy);
209 callback.onPhyUpdate(BluetoothGatt.this, txPhy, rxPhy, status);
220 public void onPhyRead(String address, int txPhy, int rxPhy, int status) {
223 + " address=" + address + " txPhy=" + txPhy + " rxPhy=" + rxPhy);
234 callback.onPhyRead(BluetoothGatt.this, txPhy, rxPhy, status);
923 * @param rxPhy preferred receiver PHY. Bitwise OR of any of {@link
930 public void setPreferredPhy(int txPhy, int rxPhy, in argument
[all...]

Completed in 43 milliseconds