Searched defs:txPhy (Results 1 - 4 of 4) sorted by relevance

/frameworks/base/core/java/android/bluetooth/
H A DBluetoothGattCallback.java29 * @param txPhy the transmitter PHY in use. One of {@link BluetoothDevice#PHY_LE_1M},
36 public void onPhyUpdate(BluetoothGatt gatt, int txPhy, int rxPhy, int status) { argument
43 * @param txPhy the transmitter PHY in use. One of {@link BluetoothDevice#PHY_LE_1M},
50 public void onPhyRead(BluetoothGatt gatt, int txPhy, int rxPhy, int status) { argument
H A DBluetoothGattServerCallback.java166 * @param txPhy the transmitter PHY in use. One of {@link BluetoothDevice#PHY_LE_1M},
173 public void onPhyUpdate(BluetoothDevice device, int txPhy, int rxPhy, int status) { argument
180 * @param txPhy the transmitter PHY in use. One of {@link BluetoothDevice#PHY_LE_1M},
187 public void onPhyRead(BluetoothDevice device, int txPhy, int rxPhy, int status) { argument
H A 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);
560 * @param txPhy preferred transmitter PHY. Bitwise OR of any of
570 public void setPreferredPhy(BluetoothDevice device, int txPhy, int rxPhy, int phyOptions) { argument
572 mService.serverSetPreferredPhy(mServerIf, device.getAddress(), txPhy, rxPhy,
H A 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);
873 * @param txPhy preferred transmitter PHY. Bitwise OR of any of
883 public void setPreferredPhy(int txPhy, in argument
[all...]

Completed in 370 milliseconds