Searched refs:arg_count (Results 1 - 5 of 5) sorted by relevance

/art/runtime/jdwp/
H A Djdwp_handler.cc90 int32_t arg_count = request->ReadSigned32("argument count"); local
97 VLOG(jdwp) << StringPrintf(" %d args:", arg_count);
99 std::unique_ptr<JdwpTag[]> argTypes(arg_count > 0 ? new JdwpTag[arg_count] : nullptr);
100 std::unique_ptr<uint64_t[]> argValues(arg_count > 0 ? new uint64_t[arg_count] : nullptr);
101 for (int32_t i = 0; i < arg_count; ++i) {
115 class_id, method_id, arg_count,
/art/runtime/
H A Ddebugger.h62 klass(invoke_class), method(invoke_method), arg_count(args_count), arg_values(args),
76 const uint32_t arg_count; member in struct:art::DebugInvokeReq
639 JDWP::MethodId method_id, uint32_t arg_count,
H A Dreflection.cc609 uint32_t arg_count = (objects != nullptr) ? objects->GetLength() : 0; local
610 if (arg_count != classes_size) {
612 classes_size, arg_count).c_str());
H A Ddebugger.cc1702 // arg_count considers doubles and longs to take 2 units.
3841 JDWP::MethodId method_id, uint32_t arg_count,
3924 if (shorty_len - 1 != arg_count) {
3933 for (size_t i = 0; i < arg_count; ++i) {
3959 options, arg_values, arg_count);
4045 << " arg_count=" << pReq->arg_count;
3839 PrepareInvokeMethod(uint32_t request_id, JDWP::ObjectId thread_id, JDWP::ObjectId object_id, JDWP::RefTypeId class_id, JDWP::MethodId method_id, uint32_t arg_count, uint64_t arg_values[], JDWP::JdwpTag* arg_types, uint32_t options) argument
/art/runtime/verifier/
H A Dmethod_verifier.cc3697 // Verify each register. If "arg_count" is bad, VerifyRegisterType() will run off the end of
3698 // the list and fail. It's legal, if silly, for arg_count to be zero.
3700 uint32_t arg_count = (is_range) ? inst->VRegA_3rc() : inst->VRegA_35c(); local
3705 for (size_t ui = 0; ui < arg_count; ui++) {

Completed in 1634 milliseconds