Home | History | Annotate | Download | only in native

Lines Matching refs:Method

56     features.push_back("method-trace-profiling");
57 features.push_back("method-trace-profiling-streaming");
229 * Start method trace profiling.
280 * Determine whether method tracing is currently active.
293 * Stop method tracing.
307 * Start sending method trace info to the emulator.
321 * Start sending method trace info to the emulator.
570 * If the specified class is loaded, and the named method exists, ensure
571 * that the method's register map is ready for use. If the class/method
579 * if the method couldn't be found, or if the method has no register map.
605 dvmThrowRuntimeException("method name not found in string");
612 dvmThrowRuntimeException("method descriptor not found in string");
628 Method* method;
631 * Find the method, which could be virtual or direct, defined directly
639 method = dvmFindDirectMethodByDescriptor(clazz, methodName,
645 method = dvmFindVirtualMethodHierByDescriptor(clazz, methodName,
647 if (method == NULL) {
648 method = dvmFindDirectMethodHierByDescriptor(clazz, methodName,
653 if (method != NULL) {
658 pMap = dvmGetExpandedRegisterMap(method);