Home
last modified time | relevance | path

Searched refs:bytecodes (Results 1 – 9 of 9) sorted by relevance

/art/test/1901-get-bytecodes/
Dbytecodes.cc44 unsigned char* bytecodes = nullptr; in Java_art_Test1901_getBytecodes() local
48 jvmti_env->GetBytecodes(method, &bytecodes_size, &bytecodes))) { in Java_art_Test1901_getBytecodes()
58 memcpy(bytes, bytecodes, bytecodes_size); in Java_art_Test1901_getBytecodes()
/art/test/979-const-method-handle/
Dinfo.txt1 This test checks const-method-handle and const-method-type bytecodes.
/art/openjdkjvmti/
Dti_method.h51 unsigned char** bytecodes);
/art/test/dexdump/
Dbytecodes.lst1 #bytecodes.dex
Dbytecodes.txt1 Processing 'bytecodes.dex'...
2 Opened 'bytecodes.dex', DEX version '035'
/art/test/
DAndroid.bp271 "1901-get-bytecodes/bytecodes.cc",
631 "1901-get-bytecodes/src/art/Test1901.java",
731 "1901-get-bytecodes/expected.txt",
/art/runtime/jdwp/
Djdwp_handler.cc754 std::vector<uint8_t> bytecodes; in M_Bytecodes() local
755 JdwpError rc = Dbg::GetBytecodes(class_id, method_id, &bytecodes); in M_Bytecodes()
760 expandBufAdd4BE(reply, bytecodes.size()); in M_Bytecodes()
761 for (size_t i = 0; i < bytecodes.size(); ++i) { in M_Bytecodes()
762 expandBufAdd1(reply, bytecodes[i]); in M_Bytecodes()
/art/runtime/
Ddebugger.h432 std::vector<uint8_t>* bytecodes)
Ddebugger.cc1762 std::vector<uint8_t>* bytecodes) { in GetBytecodes() argument
1772 bytecodes->push_back(*p); in GetBytecodes()