Home
last modified time | relevance | path

Searched refs:BluetoothConnection (Results 1 – 3 of 3) sorted by relevance

/aosp12/packages/services/Car/service/src/com/android/car/
H A DBluetoothProfileInhibitManager.java84 public static class BluetoothConnection { class in BluetoothProfileInhibitManager
113 if (!(other instanceof BluetoothConnection)) { in equals()
116 BluetoothConnection otherParams = (BluetoothConnection) other; in equals()
152 return new BluetoothConnection(null, null); in decode()
171 return new BluetoothConnection(profile, device); in decode()
176 private final BluetoothConnection mParams;
186 public BluetoothConnection getParams() { in getParams()
250 BluetoothConnection params = BluetoothConnection.decode(paramsStr); in load()
273 .map(BluetoothConnection::encode) in commit()
312 BluetoothConnection params = new BluetoothConnection(profile, device); in requestProfileInhibit()
[all …]
/aosp12/packages/services/Car/obd2-lib/src/com/android/car/obd2/connections/
H A DBluetoothConnection.java30 public class BluetoothConnection implements Obd2Connection.UnderlyingTransport { class
40 public static final String TAG = BluetoothConnection.class.getSimpleName();
42 public BluetoothConnection(String bluetoothAddress) { in BluetoothConnection() method in BluetoothConnection
46 public BluetoothConnection(BluetoothDevice device) { in BluetoothConnection() method in BluetoothConnection
/aosp12/packages/services/Car/tests/obd2_app/src/com/google/android/car/obd2app/
H A DObd2CollectionTask.java28 import com.android.car.obd2.connections.BluetoothConnection;
96 BluetoothConnection bluetoothConnection = new BluetoothConnection(deviceAddress); in Obd2CollectionTask()