Home
last modified time | relevance | path

Searched refs:Obd2Connection (Results 1 – 10 of 10) sorted by relevance

/packages/services/Car/tests/obd2_test/src/com/android/car/obd2/test/
DObd2CommandTest.java24 import com.android.car.obd2.Obd2Connection;
63 Obd2Connection obd2Connection = new Obd2Connection(transport); in checkLiveFrameIntCommand()
91 Obd2Connection obd2Connection = new Obd2Connection(transport); in checkLiveFrameFloatCommand()
119 Obd2Connection obd2Connection = new Obd2Connection(transport); in checkFreezeFrameIntCommand()
147 Obd2Connection obd2Connection = new Obd2Connection(transport); in checkFreezeFrameFloatCommand()
DObd2LiveFrameGeneratorTest.java27 import com.android.car.obd2.Obd2Connection;
76 Obd2Connection obd2Connection = new Obd2Connection(transport); in testObd2LiveFrameGeneration()
DObd2FreezeFrameGeneratorTest.java27 import com.android.car.obd2.Obd2Connection;
95 Obd2Connection obd2Connection = new Obd2Connection(transport); in testObd2FreezeFrameGeneration()
DMockObd2UnderlyingTransport.java20 import com.android.car.obd2.Obd2Connection;
26 public class MockObd2UnderlyingTransport implements Obd2Connection.UnderlyingTransport {
/packages/services/Car/tests/obd2_app/src/com/google/android/car/obd2app/
DObd2CollectionTask.java25 import com.android.car.obd2.Obd2Connection;
37 private final Obd2Connection mConnection;
101 mConnection = new Obd2Connection(bluetoothConnection); in Obd2CollectionTask()
/packages/services/Car/obd2-lib/src/com/android/car/obd2/
DObd2Command.java130 public abstract Optional<ValueType> run(Obd2Connection connection) throws Exception; in run()
157 public Optional<ValueType> run(Obd2Connection connection) in run()
184 public Optional<ValueType> run(Obd2Connection connection) in run()
DObd2Connection.java30 public class Obd2Connection { class
31 private static final String TAG = Obd2Connection.class.getSimpleName();
55 public Obd2Connection(UnderlyingTransport connection) { in Obd2Connection() method in Obd2Connection
DObd2LiveFrameGenerator.java33 private final Obd2Connection mConnection;
37 public Obd2LiveFrameGenerator(Obd2Connection connection) in Obd2LiveFrameGenerator()
DObd2FreezeFrameGenerator.java34 private final Obd2Connection mConnection;
40 public Obd2FreezeFrameGenerator(Obd2Connection connection) in Obd2FreezeFrameGenerator()
/packages/services/Car/obd2-lib/src/com/android/car/obd2/connections/
DBluetoothConnection.java23 import com.android.car.obd2.Obd2Connection;
30 public class BluetoothConnection implements Obd2Connection.UnderlyingTransport {