Searched refs:trace (Results 1 - 25 of 39) sorted by relevance

12

/dalvik/libcore/sql/src/main/java/SQLite/
H A DTrace.java4 * Callback interface for SQLite's trace function.
10 * Callback to trace (ie log) one SQL statement.
15 public void trace(String stmt); method in interface:Trace
/dalvik/vm/hprof/
H A DHprofStack.c34 StackTrace trace; member in struct:__anon83
71 * If the 'live' bit is 0, the trace is not in use by any current
89 const char *cp = (const char *) &stackTraceEntry->trace;
99 /* Only compare the 'trace' portion of the StackTraceEntry. */
103 return memcmp(&((StackTraceEntry *) tableItem)->trace,
104 &((StackTraceEntry *) looseItem)->trace, sizeof(StackTrace));
124 * hprofStartupStack, because we have to compute stack trace
140 newStackTrace->trace.serialNumber = ++gSerialNumber;
146 /* Mark the trace as live (in use by an object in the current heap). */
150 serial = val->trace
[all...]
/dalvik/dx/src/junit/runner/
H A DTestRunListener.java18 public void testFailed(int status, String testName, String trace); argument
H A DBaseTestRunner.java262 * Returns a filtered stack trace
269 String trace= buffer.toString();
270 return BaseTestRunner.getFilteredTrace(trace);
/dalvik/libcore/luni/src/test/java/junit/runner/
H A DTestRunListener.java18 public void testFailed(int status, String testName, String trace); argument
H A DBaseTestRunner.java262 * Returns a filtered stack trace
269 String trace= buffer.toString();
270 return BaseTestRunner.getFilteredTrace(trace);
/dalvik/vm/native/
H A Dorg_apache_harmony_dalvik_ddmc_DdmVmInternal.c90 * Get a stack trace as an array of StackTraceElement objects. Returns
98 ArrayObject* trace; local
100 trace = dvmDdmGetStackTraceById(threadId);
101 RETURN_PTR(trace);
H A Ddalvik_system_VMStack.c92 * Get an array with the stack trace in it.
97 LOGE("Failed to create stack trace array\n");
175 * Retrieve the stack trace of the specified thread and return it as an
205 * Suspend the thread, pull out the stack trace, then resume the thread
207 * our own stack trace, skip the suspend/resume.
220 ArrayObject* trace = dvmGetStackTraceRaw(traceBuf, stackDepth); local
222 RETURN_PTR(trace);
/dalvik/tools/dmtracedump/
H A DAndroid.mk4 # Java method trace dump tool
/dalvik/tools/dmtracedump/tests/filters/
H A Drun_tests.sh14 # create_test_dmtrace $file tmp.trace
28 rm tmp.trace
/dalvik/hit/src/com/android/hit/
H A DHeap.java69 StackTrace trace = mTraces.get(traceSerialNumber);
71 if (trace != null) {
72 trace = trace.fromDepth(depth);
75 return trace;
H A DHprofParser.java231 StackTrace trace = new StackTrace(serialNumber, threadSerialNumber,
234 mState.addStackTrace(trace);
357 StackTrace trace = mState.getStackTraceAtDepth(thread.mStackTrace,
360 threadSerialNumber, trace);
373 StackTrace trace = mState.getStackTraceAtDepth(thread.mStackTrace,
376 trace);
388 StackTrace trace = mState.getStackTrace(thread.mStackTrace);
390 threadSerialNumber, trace);
578 StackTrace trace = mState.getStackTraceAtDepth(thread.mStackTrace,
581 threadSerialNumber, trace);
[all...]
/dalvik/dx/src/junit/framework/
H A DTestFailure.java44 public String trace() { method in class:TestFailure
/dalvik/libcore/junit/src/main/java/junit/framework/
H A DTestFailure.java44 public String trace() { method in class:TestFailure
/dalvik/libcore/luni/src/test/java/com/google/coretests/
H A DCoreTestResult.java134 StackTraceElement[] trace = thread.getStackTrace();
144 timeout.setStackTrace(trace);
H A DResultPrinter.java88 // before we get to the stack trace.
93 getWriter().print(BaseTestRunner.getFilteredTrace(booBoo.trace()));
/dalvik/vm/compiler/
H A DCompiler.h45 /* Description of a compiled trace. */
86 kJitTSelectRequest = 1, // Request a trace (subject to filtering)
87 kJitTSelectRequestHot = 2, // Request a hot trace (bypass the filter)
91 kJitTSelect = 4, // Actively selecting a trace
92 kJitTSelectEnd = 5, // Done with the trace - wrap it up
104 kSVSTraceSelectNoChain = 4,// Exiting compiled code by trace select no chain
105 kSVSTraceSelect = 5, // Exiting compiled code by trace select
108 kSVSBackwardBranch = 8, // Exiting compiled code with backward branch trace
121 * Element of a Jit trace description. Describes a contiguous
127 u2 startOffset; // Starting offset for trace ru
146 JitTraceRun trace[]; member in struct:__anon71
[all...]
/dalvik/vm/mterp/x86-atom/
H A DOP_MONITOR_ENTER.S37 EXPORT_PC # export PC so we can grab stack trace
/dalvik/vm/interp/
H A DJit.c108 * Store the original method here in case the trace ends with a
127 // Reset trace length
224 /* Print decoded instructions in the current trace */
234 addr = shadowSpace->trace[i].addr;
236 decInsn = &(shadowSpace->trace[i].decInsn);
280 * Skip endPC once when trace has a backward branch. If the SV state is
288 /* Check that the current pc is the end of the trace */
379 shadowSpace->trace[shadowSpace->traceLength].addr = (int)pc;
380 shadowSpace->trace[shadowSpace->traceLength].decInsn = decInsn;
506 /* Clean up any pending trace build
[all...]
H A DInterpDefs.h57 * disturbing the trace formation.
61 * invokes). This trace exit will first check for a chaining
63 * interpreter immediately for trace selection (as if threshold had
68 * and 5). This is used instead if the ending branch of the trace jumps back
174 int totalTraceLen; // Number of Dalvik insts in trace
175 const u2* currTraceHead; // Start of the trace we're building
181 JitTraceRun trace[MAX_JIT_RUN_LEN]; member in struct:InterpState
H A DJit.h55 InstructionTrace trace[JIT_MAX_TRACE_LEN]; /* opcode trace for debugging */ member in struct:ShadowSpace
56 int traceLength; /* counter for current trace length */
/dalvik/libcore/luni/src/test/java/org/apache/harmony/luni/tests/java/lang/
H A DThrowableTest.java199 private String fixStacktrace(String trace) { argument
203 while (lastIndex < trace.length()) {
204 int index = trace.indexOf('\n', lastIndex);
206 index = trace.length();
207 String line = trace.substring(lastIndex, index);
346 assertNotNull("Returned stack trace is empty", ste.length != 0);
/dalvik/libcore/luni-kernel/src/main/java/java/lang/
H A DThrowable.java31 * message in most cases), and for saving a stack trace (that is, a record of
38 * information. When printing the stack trace, the trace of the cause is
62 * An intermediate representation of the stack trace. This field may
69 * A fully-expanded representation of the stack trace.
74 * Constructs a new {@code Throwable} that includes the current stack trace.
84 * Constructs a new {@code Throwable} with the current stack trace and the
97 * Constructs a new {@code Throwable} with the current stack trace, the
113 * Constructs a new {@code Throwable} with the current stack trace and the
128 * Records the stack trace fro
203 setStackTrace(StackTraceElement[] trace) argument
[all...]
/dalvik/dx/src/junit/textui/
H A DResultPrinter.java72 // before we get to the stack trace.
77 getWriter().print(BaseTestRunner.getFilteredTrace(booBoo.trace()));
/dalvik/libcore/luni/src/test/java/junit/textui/
H A DResultPrinter.java73 // before we get to the stack trace.
78 getWriter().print(BaseTestRunner.getFilteredTrace(booBoo.trace()));

Completed in 3439 milliseconds

12