HomeSort by relevance Sort by last modified time
    Searched refs:LiveFrameCommand (Results 1 - 2 of 2) sorted by null

  /packages/services/Car/obd2-lib/src/com/android/car/obd2/
Obd2LiveFrameGenerator.java 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<>();
70 for (LiveFrameCommand<Integer> command : mIntegerCommands) {
91 for (LiveFrameCommand<Float> command : mFloatCommands) {
Obd2Command.java 136 public static final <T> LiveFrameCommand<T> getLiveFrameCommand(OutputSemanticHandler handler) {
137 return new LiveFrameCommand<>(handler);
150 public static class LiveFrameCommand<ValueType> extends Obd2Command<ValueType> {
153 LiveFrameCommand(OutputSemanticHandler<ValueType> semanticHandler) {

Completed in 9088 milliseconds