Searched refs:LiveFrameCommand (Results 1 – 2 of 2) sorted by relevance
26 import com.android.car.obd2.Obd2Command.LiveFrameCommand;39 private final List<LiveFrameCommand<Integer>> mIntegerCommands = new ArrayList<>();40 private final List<LiveFrameCommand<Float>> mFloatCommands = new ArrayList<>();85 for (LiveFrameCommand<Integer> command : mIntegerCommands) { in generate()94 for (LiveFrameCommand<Float> command : mFloatCommands) { in generate()
137 public static final <T> LiveFrameCommand<T> getLiveFrameCommand(OutputSemanticHandler handler) { in getLiveFrameCommand()138 return new LiveFrameCommand<>(handler); in getLiveFrameCommand()151 public static class LiveFrameCommand<ValueType> extends Obd2Command<ValueType> { class in Obd2Command154 LiveFrameCommand(OutputSemanticHandler<ValueType> semanticHandler) { in LiveFrameCommand() method in Obd2Command.LiveFrameCommand