Home
last modified time | relevance | path

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

/art/tools/jvmti-agents/titrace/
Dtitrace.cc179 unsigned char* bytecodes_ptr = nullptr; in LookupBytecode() local
181 error = jvmti_env->GetBytecodes(method, &bytecode_count_ptr, &bytecodes_ptr); in LookupBytecode()
183 CHECK(bytecodes_ptr != nullptr) << "Bytecode ptr was null for method " << method; in LookupBytecode()
188 std::make_pair(method, MethodBytecode(jvmti_env, bytecodes_ptr, bytecode_count_ptr))); in LookupBytecode()
/art/openjdkjvmti/include/
Djvmti.h1404 unsigned char** bytecodes_ptr);
2326 unsigned char** bytecodes_ptr) { in GetBytecodes()
2327 return functions->GetBytecodes(this, method, bytecode_count_ptr, bytecodes_ptr); in GetBytecodes()
/art/openjdkjvmti/
DOpenjdkJvmTi.cc913 unsigned char** bytecodes_ptr) { in GetBytecodes() argument
916 return MethodUtil::GetBytecodes(env, method, bytecode_count_ptr, bytecodes_ptr); in GetBytecodes()