Home
last modified time | relevance | path

Searched refs:OutputSemanticHandler (Results 1 – 14 of 14) sorted by relevance

/aosp12/packages/services/Car/obd2-lib/src/com/android/car/obd2/
H A DObd2Command.java54 public interface OutputSemanticHandler<ValueType> { interface in Obd2Command
63 private static final HashMap<Integer, OutputSemanticHandler<Integer>>
69 OutputSemanticHandler<Integer>... integerOutputSemanticHandlers) { in addSupportedIntegerCommands()
70 for (OutputSemanticHandler<Integer> integerOutputSemanticHandler : in addSupportedIntegerCommands()
78 OutputSemanticHandler<Float>... floatOutputSemanticHandlers) { in addSupportedFloatCommands()
79 for (OutputSemanticHandler<Float> floatOutputSemanticHandler : in addSupportedFloatCommands()
94 public static OutputSemanticHandler<Integer> getIntegerCommand(int pid) { in getIntegerCommand()
98 public static OutputSemanticHandler<Float> getFloatCommand(int pid) { in getFloatCommand()
123 protected final OutputSemanticHandler<ValueType> mSemanticHandler;
141 OutputSemanticHandler handler, int frameId) { in getFreezeFrameCommand()
[all …]
H A DObd2FreezeFrameGenerator.java23 import com.android.car.obd2.Obd2Command.OutputSemanticHandler;
35 private final List<OutputSemanticHandler<Integer>> mIntegerCommands = new ArrayList<>();
36 private final List<OutputSemanticHandler<Float>> mFloatCommands = new ArrayList<>();
130 for (OutputSemanticHandler<Integer> handler : mIntegerCommands) { in generate()
152 for (OutputSemanticHandler<Float> handler : mFloatCommands) { in generate()
/aosp12/packages/services/Car/obd2-lib/src/com/android/car/obd2/commands/
H A DAmbientAirTemperature.java23 public class AmbientAirTemperature implements Obd2Command.OutputSemanticHandler<Float> {
H A DCalculatedEngineLoad.java23 public class CalculatedEngineLoad implements Obd2Command.OutputSemanticHandler<Float> {
H A DEngineCoolantTemperature.java23 public class EngineCoolantTemperature implements Obd2Command.OutputSemanticHandler<Integer> {
H A DEngineOilTemperature.java23 public class EngineOilTemperature implements Obd2Command.OutputSemanticHandler<Integer> {
H A DFuelGaugePressure.java23 public class FuelGaugePressure implements Obd2Command.OutputSemanticHandler<Integer> {
H A DFuelSystemStatus.java23 public class FuelSystemStatus implements Obd2Command.OutputSemanticHandler<Integer> {
H A DFuelTankLevel.java23 public class FuelTankLevel implements Obd2Command.OutputSemanticHandler<Float> {
H A DSpeed.java23 public class Speed implements Obd2Command.OutputSemanticHandler<Integer> {
H A DThrottlePosition.java23 public class ThrottlePosition implements Obd2Command.OutputSemanticHandler<Float> {
H A DEngineRuntime.java23 public class EngineRuntime implements Obd2Command.OutputSemanticHandler<Integer> {
H A DRPM.java23 public class RPM implements Obd2Command.OutputSemanticHandler<Integer> {
H A DFuelTrimCommand.java23 public abstract class FuelTrimCommand implements Obd2Command.OutputSemanticHandler<Float> {