Home
last modified time | relevance | path

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

/packages/services/Car/service/src/com/android/car/
DBluetoothProfileInhibitManager.java60 private final SetMultimap<BluetoothConnection, InhibitRecord> mProfileInhibits =
67 private final HashSet<BluetoothConnection> mAlreadyDisabledProfiles = new HashSet<>();
82 public static class BluetoothConnection { class in BluetoothProfileInhibitManager
93 public BluetoothConnection(Integer profile, BluetoothDevice device) { in BluetoothConnection() method in BluetoothProfileInhibitManager.BluetoothConnection
111 if (!(other instanceof BluetoothConnection)) { in equals()
114 BluetoothConnection otherParams = (BluetoothConnection) other; in equals()
143 public static BluetoothConnection decode(String flattenedParams) { in decode()
150 return new BluetoothConnection(null, null); in decode()
169 return new BluetoothConnection(profile, device); in decode()
174 private final BluetoothConnection mParams;
[all …]
/packages/services/Car/obd2-lib/src/com/android/car/obd2/connections/
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
/packages/services/Car/tests/obd2_app/src/com/google/android/car/obd2app/
DObd2CollectionTask.java28 import com.android.car.obd2.connections.BluetoothConnection;
96 BluetoothConnection bluetoothConnection = new BluetoothConnection(deviceAddress); in Obd2CollectionTask()