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

/dalvik/dx/src/junit/framework/
H A DTestFailure.java44 public String trace() { method in class:TestFailure
/dalvik/dx/src/junit/runner/
H A DTestRunListener.java18 public void testFailed(int status, String testName, String trace); argument
/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");
173 * Retrieve the stack trace of the specified thread and return it as an
203 * Suspend the thread, pull out the stack trace, then resume the thread
205 * our own stack trace, skip the suspend/resume.
218 ArrayObject* trace = dvmGetStackTraceRaw(traceBuf, stackDepth); local
220 RETURN_PTR(trace);
/dalvik/vm/hprof/
H A DHprofStack.c34 StackTrace trace; member in struct:__anon75
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/vm/interp/
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
175 int totalTraceLen; // Number of Dalvik insts in trace
176 const u2* currTraceHead; // Start of the trace we're building
182 JitTraceRun trace[MAX_JIT_RUN_LEN]; member in struct:InterpState
264 * progress if the same trace building request sent upon entering the fast
H A DJit.h56 InstructionTrace trace[JIT_MAX_TRACE_LEN]; /* opcode trace for debugging */ member in struct:ShadowSpace
57 int traceLength; /* counter for current trace length */
/dalvik/vm/
H A DDdm.c544 * Find the specified thread and return its stack trace as an array of
566 * Suspend the thread, pull out the stack trace, then resume the thread
568 * our own stack trace, skip the suspend/resume.
581 ArrayObject* trace = dvmGetStackTraceRaw(traceBuf, stackDepth); local
583 return trace;
H A DThread.c1780 /* restore it and dump a stack trace */
2272 * If we're doing method trace profiling, we don't want threads to exit,
2287 LOGI("threadid=%d: waiting for method trace to finish\n",
2682 /* stack trace logging is slow; skip on first iter */
3709 * debuggerd will take notice and dump an appropriate stack trace.
3734 * you don't get the second stack trace; possibly something in the
3792 int* trace; local
3814 trace = dvmFillInStackTraceRaw(self, &depth);
3815 newLod->rawStackTrace = trace;
/dalvik/vm/compiler/
H A DCompiler.h89 /* Description of a compiled trace. */
131 kJitTSelectRequest = 1, // Request a trace (subject to filtering)
132 kJitTSelectRequestHot = 2, // Request a hot trace (bypass the filter)
136 kJitTSelect = 4, // Actively selecting a trace
137 kJitTSelectEnd = 5, // Done with the trace - wrap it up
153 kSVSBackwardBranch = 8, // Exiting compiled code with backward branch trace
166 * Element of a Jit trace description. If the isCode bit is set, it describes
174 u2 startOffset; // Starting offset for trace run
178 * A complete list of trace runs passed to the compiler looks like the
194 * For example, if a trace ru
211 JitTraceRun trace[0]; // Variable-length trace descriptors member in struct:__anon62
[all...]

Completed in 164 milliseconds