Home
last modified time | relevance | path

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

/art/runtime/jdwp/
Djdwp_handler.cc784 std::vector<uint8_t> bytecodes; in M_Bytecodes() local
785 JdwpError rc = Dbg::GetBytecodes(class_id, method_id, bytecodes); in M_Bytecodes()
790 expandBufAdd4BE(reply, bytecodes.size()); in M_Bytecodes()
791 for (size_t i = 0; i < bytecodes.size(); ++i) { in M_Bytecodes()
792 expandBufAdd1(reply, bytecodes[i]); in M_Bytecodes()
/art/runtime/
Ddebugger.h388 std::vector<uint8_t>& bytecodes)
Ddebugger.cc1773 std::vector<uint8_t>& bytecodes) in GetBytecodes() argument
1784 bytecodes.push_back(*p); in GetBytecodes()