Home
last modified time | relevance | path

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

/cts/tools/tradefed-host/src/com/android/cts/tradefed/result/
DTestLog.java83 TestLogType logType = TestLogType.fromDataName(dataName); in fromDataName() local
84 if (logType == null) { in fromDataName()
92 return new TestLog(logType, url); in fromDataName()
109 TestLogType logType = TestLogType.valueOf(type.toUpperCase()); in fromXml() local
110 return new TestLog(logType, url); in fromXml()
117 public static TestLog of(TestLogType logType, String url) { in of() argument
118 return new TestLog(logType, url); in of()
121 private TestLog(TestLogType logType, String url) { in TestLog() argument
122 this.mLogType = logType; in TestLog()