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

/packages/services/Car/obd2-lib/src/com/android/car/obd2/
H A DObd2Command.java54 public interface OutputSemanticHandler<ValueType> { interface in class:Obd2Command
63 private static final HashMap<Integer, OutputSemanticHandler<Integer>>
65 private static final HashMap<Integer, OutputSemanticHandler<Float>> SUPPORTED_FLOAT_COMMANDS =
69 OutputSemanticHandler<Integer>... integerOutputSemanticHandlers) {
70 for (OutputSemanticHandler<Integer> integerOutputSemanticHandler :
78 OutputSemanticHandler<Float>... floatOutputSemanticHandlers) {
79 for (OutputSemanticHandler<Float> floatOutputSemanticHandler :
94 public static OutputSemanticHandler<Integer> getIntegerCommand(int pid) {
98 public static OutputSemanticHandler<Float> getFloatCommand(int pid) {
123 protected final OutputSemanticHandler<ValueTyp
[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) {
152 for (OutputSemanticHandler<Float> handler : mFloatCommands) {
/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 DEngineRuntime.java23 public class EngineRuntime 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 DRPM.java23 public class RPM implements Obd2Command.OutputSemanticHandler<Integer> {
H A DSpeed.java23 public class Speed implements Obd2Command.OutputSemanticHandler<Integer> {
H A DThrottlePosition.java23 public class ThrottlePosition implements Obd2Command.OutputSemanticHandler<Float> {
H A DFuelTrimCommand.java23 public abstract class FuelTrimCommand implements Obd2Command.OutputSemanticHandler<Float> {

Completed in 84 milliseconds