Searched defs:trace (Results 1 - 4 of 4) sorted by relevance

/frameworks/base/core/java/android/ddm/
H A DDdmHandleThread.java132 StackTraceElement[] trace = DdmVmInternal.getStackTraceById(threadId);
133 if (trace == null) {
134 return createFailChunk(1, "Stack trace unavailable");
136 return createStackChunk(trace, threadId);
146 private Chunk createStackChunk(StackTraceElement[] trace, int threadId) { argument
152 for (StackTraceElement elem : trace) {
164 out.putInt(trace.length);
165 for (StackTraceElement elem : trace) {
/frameworks/base/test-runner/src/junit/runner/
H A DTestRunListener.java19 public void testFailed(int status, String testName, String trace); argument
/frameworks/base/core/tests/hosttests/src/android/content/pm/
H A DPackageManagerHostTestUtils.java465 String trace) {
467 test.getTestName(), trace));
464 testFailed(TestFailure status, TestIdentifier test, String trace) argument
/frameworks/base/core/java/android/view/
H A DViewDebug.java83 * {@link #trace(View, android.view.ViewDebug.HierarchyTraceType)} should first
90 * {@link #trace(View, android.view.ViewDebug.RecyclerTraceType, int[])} should first
97 * {@link #trace(View, MotionEvent, MotionEventTraceType)} should first check
358 * Defines the type of hierarhcy trace to output to the hierarchy traces file.
376 * Defines the type of recycler trace to output to the recycler traces file.
400 * Defines the type of motion events trace to output to the motion events traces file.
437 * Outputs a trace to the currently opened recycler traces. The trace records the type of
440 * @param view the view to trace
441 * @param type the type of the trace
444 public static void trace(View view, RecyclerTraceType type, int... parameters) { method in class:ViewDebug
585 public static void trace(View view, HierarchyTraceType type) { method in class:ViewDebug
718 public static void trace(View view, MotionEvent event, MotionEventTraceType type) { method in class:ViewDebug
[all...]

Completed in 247 milliseconds