OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:fromdataname
(Results
1 - 3
of
3
) sorted by null
/cts/tools/tradefed-host/tests/src/com/android/cts/tradefed/result/
TestLogTest.java
34
assertNull(TestLogType.
fromDataName
(null));
35
assertNull(TestLogType.
fromDataName
(""));
36
assertNull(TestLogType.
fromDataName
("kmsg-foo_bar_test"));
39
TestLogType.
fromDataName
("logcat-foo_bar_test"));
41
TestLogType.
fromDataName
("bug-foo_bar_test"));
50
TestLog log = TestLog.
fromDataName
("logcat-baz_test", "http://logs/baz_test");
56
assertNull(TestLog.
fromDataName
("kmsg-baz_test", null));
60
assertNull(TestLog.
fromDataName
(null, "http://logs/baz_test"));
64
assertNull(TestLog.
fromDataName
("logcat-bar_test", null));
68
assertNull(TestLog.
fromDataName
(null, null))
[
all
...]
/cts/tools/tradefed-host/src/com/android/cts/tradefed/result/
TestLog.java
50
static TestLogType
fromDataName
(String dataName) {
82
static TestLog
fromDataName
(String dataName, String url) {
83
TestLogType logType = TestLogType.
fromDataName
(dataName);
CtsXmlResultReporter.java
245
TestLog log = TestLog.
fromDataName
(dataName, logFile.getUrl());
Completed in 743 milliseconds