Searched defs:bytecodes (Results 1 - 2 of 2) sorted by relevance

/art/runtime/jdwp/
H A Djdwp_handler.cc734 std::vector<uint8_t> bytecodes; local
735 JdwpError rc = Dbg::GetBytecodes(class_id, method_id, &bytecodes);
740 expandBufAdd4BE(reply, bytecodes.size());
741 for (size_t i = 0; i < bytecodes.size(); ++i) {
742 expandBufAdd1(reply, bytecodes[i]);
/art/runtime/
H A Ddebugger.cc1742 std::vector<uint8_t>* bytecodes) {
1752 bytecodes->push_back(*p);
1741 GetBytecodes(JDWP::RefTypeId, JDWP::MethodId method_id, std::vector<uint8_t>* bytecodes) argument

Completed in 48 milliseconds