Home
last modified time | relevance | path

Searched refs:ModeId (Results 1 – 10 of 10) sorted by relevance

/external/vogar/src/vogar/
DExpectationStore.java111 ModeId mode, in parse()
123 public void parse(File expectationsFile, ModeId mode, Variant variant) throws IOException { in parse()
146 private void readExpectation(JsonReader reader, ModeId mode, Variant variant) in readExpectation()
153 Map<ModeId, Set<Variant>> modeVariants = null; in readExpectation()
154 Set<ModeId> modes = null; in readExpectation()
225 private Set<ModeId> readModes(JsonReader reader) throws IOException { in readModes()
226 Set<ModeId> result = EnumSet.noneOf(ModeId.class); in readModes()
229 result.add(ModeId.valueOf(reader.nextString().toUpperCase())); in readModes()
238 private Map<ModeId, Set<Variant>> readModesAndVariants(JsonReader reader) throws IOException { in readModesAndVariants()
239 Map<ModeId, Set<Variant>> result = new EnumMap<ModeId, Set<Variant>>(ModeId.class); in readModesAndVariants()
[all …]
DModeId.java23 public enum ModeId { enum
88 return isHost() || this == ModeId.JVM; in isLocal()
98 return this == ModeId.DEVICE || this == ModeId.APP_PROCESS; in isDevice()
DVogar.java66 ModeId modeId = ModeId.DEVICE;
522 if (modeId == ModeId.ACTIVITY && debugPort != null) { in parseArgs()
527 if (debugApp && modeId != ModeId.ACTIVITY) { in parseArgs()
628 if (modeId == ModeId.ACTIVITY) { in run()
645 if (modeId == ModeId.ACTIVITY) { in run()
DRun.java143 this.maxConcurrentActions = (vogar.stream || vogar.modeId == ModeId.ACTIVITY) in Run()
193 private Mode createMode(ModeId modeId, Variant variant) { in createMode()
/external/vogar/test/vogar/android/
DDeviceRuntimeAdbTargetTest.java29 import vogar.ModeId;
57 Mode deviceRuntime = new DeviceRuntime(run, ModeId.DEVICE, Variant.X32, in testAdbTarget()
89 Mode deviceRuntime = new DeviceRuntime(run, ModeId.DEVICE, Variant.X32, in testAdbTarget_Benchmark()
DHostRuntimeLocalTargetTest.java33 import vogar.ModeId;
61 Mode hostRuntime = new HostRuntime(run, ModeId.HOST, Variant.X32); in testLocalTarget()
116 Mode hostRuntime = new HostRuntime(run, ModeId.HOST, Variant.X32); in testLocalTarget_Benchmark()
DDeviceRuntimeSshTargetTest.java26 import vogar.ModeId;
51 Mode deviceRuntime = new DeviceRuntime(run, ModeId.DEVICE, Variant.X32, in testSshTarget()
/external/vogar/src/vogar/android/
DDeviceRuntime.java31 import vogar.ModeId;
42 private final ModeId modeId;
45 public DeviceRuntime(Run run, ModeId modeId, Variant variant, in DeviceRuntime()
94 if (modeId == ModeId.APP_PROCESS) { in newVmCommandBuilder()
DHostRuntime.java31 import vogar.ModeId;
44 private final ModeId modeId;
47 public HostRuntime(Run run, ModeId modeId, Variant variant) { in HostRuntime()
DAndroidSdk.java33 import vogar.ModeId;
62 Log log, Mkdir mkdir, ModeId modeId, boolean useJack, Language language) { in createAndroidSdk()