Home
last modified time | relevance | path

Searched refs:bytecode_count_ptr (Results 1 – 3 of 3) sorted by relevance

/art/tools/jvmti-agents/titrace/
Dtitrace.cc178 jint bytecode_count_ptr = 0; in LookupBytecode() local
181 error = jvmti_env->GetBytecodes(method, &bytecode_count_ptr, &bytecodes_ptr); in LookupBytecode()
184 CHECK_GE(bytecode_count_ptr, 0) << "Bytecode size too small for method " << method; in LookupBytecode()
188 std::make_pair(method, MethodBytecode(jvmti_env, bytecodes_ptr, bytecode_count_ptr))); in LookupBytecode()
/art/openjdkjvmti/include/
Djvmti.h1403 jint* bytecode_count_ptr,
2325 jint* bytecode_count_ptr, in GetBytecodes()
2327 return functions->GetBytecodes(this, method, bytecode_count_ptr, bytecodes_ptr); in GetBytecodes()
/art/openjdkjvmti/
DOpenjdkJvmTi.cc912 jint* bytecode_count_ptr, in GetBytecodes() argument
916 return MethodUtil::GetBytecodes(env, method, bytecode_count_ptr, bytecodes_ptr); in GetBytecodes()