Searched refs:LiveFrameCommand (Results 1 – 2 of 2) sorted by relevance
22 import com.android.car.obd2.Obd2Command.LiveFrameCommand;34 private final List<LiveFrameCommand<Integer>> mIntegerCommands = new ArrayList<>();35 private final List<LiveFrameCommand<Float>> mFloatCommands = new ArrayList<>();80 for (LiveFrameCommand<Integer> command : mIntegerCommands) { in generate()101 for (LiveFrameCommand<Float> command : mFloatCommands) { in generate()
136 public static final <T> LiveFrameCommand<T> getLiveFrameCommand(OutputSemanticHandler handler) { in getLiveFrameCommand()137 return new LiveFrameCommand<>(handler); in getLiveFrameCommand()150 public static class LiveFrameCommand<ValueType> extends Obd2Command<ValueType> { class in Obd2Command153 LiveFrameCommand(OutputSemanticHandler<ValueType> semanticHandler) { in LiveFrameCommand() method in Obd2Command.LiveFrameCommand