/cts/common/util/src/com/android/compatibility/common/util/ |
D | TestResult.java | 174 public void failed(String trace) { in failed() argument 176 int index = trace.indexOf('\n'); in failed() 179 setMessage(trace); in failed() 181 setMessage(trace.substring(0, index)); in failed() 183 setStackTrace(trace); in failed() 243 static String sanitizeStackTrace(String trace) { in sanitizeStackTrace() argument 244 if (trace != null) { in sanitizeStackTrace() 245 return trace.replaceAll("[^\\u0009\\u000A\\u000D\\u0020-\\uD7FF\\uE000-\\uFFFD]", ""); in sanitizeStackTrace()
|
D | ITestResult.java | 111 void failed(String trace); in failed() argument
|
/cts/common/host-side/tradefed/src/com/android/compatibility/common/tradefed/result/ |
D | ModuleListener.java | 97 public void testFailed(TestIdentifier test, String trace) { in testFailed() argument 98 CLog.d("ModuleListener.testFailed(%s, %s)", test.toString(), trace); in testFailed() 99 mListener.testFailed(test, trace); in testFailed() 106 public void testAssumptionFailure(TestIdentifier test, String trace) { in testAssumptionFailure() argument 107 CLog.d("ModuleListener.testAssumptionFailure(%s, %s)", test.toString(), trace); in testAssumptionFailure() 108 mListener.testAssumptionFailure(test, trace); in testAssumptionFailure()
|
D | ConsoleReporter.java | 99 public void testFailed(TestIdentifier test, String trace) { in testFailed() argument 100 logProgress("%s fail: %s", test, trace); in testFailed() 118 public void testAssumptionFailure(TestIdentifier test, String trace) { in testAssumptionFailure() argument 119 logProgress("%s failed assumption: %s", test, trace); in testAssumptionFailure()
|
D | ResultReporter.java | 310 public void testFailed(TestIdentifier test, String trace) { in testFailed() argument 311 mCurrentResult.failed(trace); in testFailed() 318 public void testAssumptionFailure(TestIdentifier test, String trace) { in testAssumptionFailure() argument
|
/cts/common/host-side/tradefed/src/com/android/compatibility/common/tradefed/targetprep/ |
D | ApkInstrumentationPreparer.java | 130 String trace = testFailures.get(test); in instrument() local 131 logError("Target preparation step %s failed.\n%s", test.getTestName(), trace); in instrument() 145 public void testFailed(TestIdentifier test, String trace) { in testFailed() argument 146 testFailures.put(test, trace); in testFailed()
|
/cts/tools/tradefed-host/src/com/android/cts/tradefed/result/ |
D | CtsTestLogReporter.java | 99 public void testFailed(TestIdentifier test, String trace) { in testFailed() argument 103 mCurrentPkgResult.reportTestFailure(test, CtsTestStatus.FAIL, trace); in testFailed() 110 public void testAssumptionFailure(TestIdentifier test, String trace) { in testAssumptionFailure() argument 115 mCurrentPkgResult.reportTestFailure(test, CtsTestStatus.FAIL, trace); in testAssumptionFailure()
|
D | IssueReporter.java | 61 public void testFailed(TestIdentifier test, String trace) { in testFailed() argument 64 mCurrentIssue.mStackTrace = trace; in testFailed() 68 public void testAssumptionFailure(TestIdentifier test, String trace) { in testAssumptionFailure() argument 71 mCurrentIssue.mStackTrace = trace; in testAssumptionFailure()
|
D | Test.java | 176 private static String sanitizeStackTrace(String trace) { in sanitizeStackTrace() argument 177 if (trace != null) { in sanitizeStackTrace() 178 return trace.replaceAll("[^\\u0009\\u000A\\u000D\\u0020-\\uD7FF\\uE000-\\uFFFD]", ""); in sanitizeStackTrace()
|
D | CtsXmlResultReporter.java | 290 public void testFailed(TestIdentifier test, String trace) { in testFailed() argument 292 mCurrentPkgResult.reportTestFailure(test, CtsTestStatus.FAIL, trace); in testFailed() 300 public void testAssumptionFailure(TestIdentifier test, String trace) { in testAssumptionFailure() argument 303 mCurrentPkgResult.reportTestFailure(test, CtsTestStatus.FAIL, trace); in testAssumptionFailure()
|
D | TestPackageResult.java | 273 public void reportTestFailure(TestIdentifier test, CtsTestStatus status, String trace) { in reportTestFailure() argument 276 result.setStackTrace(trace); in reportTestFailure()
|
/cts/common/host-side/tradefed/src/com/android/compatibility/common/tradefed/util/ |
D | NoOpTestInvocationListener.java | 82 public void testFailed(TestIdentifier test, String trace) {} in testFailed() argument 88 public void testAssumptionFailure(TestIdentifier test, String trace) {} in testAssumptionFailure() argument
|
/cts/tools/tradefed-host/src/com/android/cts/tradefed/testtype/ |
D | ResultFilter.java | 87 public void testFailed(TestIdentifier test, String trace) { in testFailed() argument 89 super.testFailed(test, trace); in testFailed()
|
D | CtsTest.java | 277 public void testFailed(TestIdentifier test, String trace) { in testFailed() argument 278 super.testFailed(test, trace); in testFailed() 301 public void testFailed(TestIdentifier test, String trace) { in testFailed() argument 302 super.testFailed(test, trace); in testFailed() 325 public void testFailed(TestIdentifier test, String trace) { in testFailed() argument 326 super.testFailed(test, trace); in testFailed()
|
/cts/common/host-side/tradefed/src/com/android/compatibility/common/tradefed/testtype/ |
D | FailureListener.java | 53 public void testFailed(TestIdentifier test, String trace) { in testFailed() argument 54 super.testFailed(test, trace); in testFailed()
|
/cts/tools/tradefed-host/tests/src/com/android/cts/tradefed/result/ |
D | CtsXmlResultReporterTest.java | 176 final String trace = "this is a trace\nmore trace\nyet more trace"; in testSingleFail() local 181 mResultReporter.testFailed(testId, trace); in testSingleFail() 208 final String trace = "this is a trace\nmore trace\nyet more trace"; in testIncludeTestLogTags() local 217 mResultReporter.testFailed(testId, trace); in testIncludeTestLogTags()
|
/cts/tools/cts-media/ |
D | get_achievable_rates.py | 166 trace = failure.find('StackTrace') 167 if trace is not None: 168 for line in re.split(r'[\r\n]+', trace.text):
|
/cts/tests/tests/os/jni/seccomp-tests/tests/ |
D | seccomp_bpf_tests.c | 642 struct sock_fprog trace; in FIXTURE_DATA() local 687 FILTER_ALLOC(trace); in FIXTURE_SETUP() 696 FILTER_FREE(trace); in FIXTURE_TEARDOWN() 710 ret = prctl(PR_SET_SECCOMP, SECCOMP_MODE_FILTER, &self->trace); in TEST_F() 731 ret = prctl(PR_SET_SECCOMP, SECCOMP_MODE_FILTER, &self->trace); in TEST_F_SIGNAL() 758 ret = prctl(PR_SET_SECCOMP, SECCOMP_MODE_FILTER, &self->trace); in TEST_F_SIGNAL() 775 ret = prctl(PR_SET_SECCOMP, SECCOMP_MODE_FILTER, &self->trace); in TEST_F_SIGNAL() 796 ret = prctl(PR_SET_SECCOMP, SECCOMP_MODE_FILTER, &self->trace); in TEST_F_SIGNAL() 813 ret = prctl(PR_SET_SECCOMP, SECCOMP_MODE_FILTER, &self->trace); in TEST_F() 829 ret = prctl(PR_SET_SECCOMP, SECCOMP_MODE_FILTER, &self->trace); in TEST_F() [all …]
|
/cts/tools/vm-tests-tf/lib/ |
D | junit.jar | META-INF/
META-INF/MANIFEST.MF
junit/
junit/awtui/
junit/ ... |
/cts/apps/CtsVerifier/libs/ |
D | opencv3-android.jar | META-INF/
META-INF/MANIFEST.MF
org/
org/opencv/
org/ ... |
/cts/tools/dex-tools/dex/ |
D | classes.out.dex | 71778 public abstract void trace( 72472 public void trace( 87330 public static void trace( 87334 public static transient void trace( 143110 public abstract void trace( 143113 public abstract void trace( 143480 public void trace( 143483 public void trace( 143695 public void trace( 143698 public void trace( [all …]
|
D | classes0.out.dex | 650 public void trace( 4409 public abstract void trace( 64629 public java.lang.String trace()
|