Lines Matching refs:Method
18 * Android's method call profiling goodies.
35 * Method trace state. This is currently global. In theory we could make
83 * Start/stop method tracing.
111 * Call these when a method enters or exits.
135 void dvmMethodTraceAdd(struct Thread* self, const Method* method, int action);
136 void dvmEmitEmulatorTrace(const Method* method, int action);
143 extern "C" void dvmFastMethodTraceEnter(const Method* method, struct Thread* self);
145 extern "C" void dvmFastNativeMethodTraceExit(const Method* method, struct Thread* self);
160 METHOD_TRACE_ENTER = 0x00, // method entry
161 METHOD_TRACE_EXIT = 0x01, // method exit
162 METHOD_TRACE_UNROLL = 0x02, // method exited by exception unrolling