Searched refs:arg_count (Results 1 – 6 of 6) sorted by relevance
/art/runtime/openjdkjvmti/ |
D | ti_method.cc | 148 size_t arg_count = art::ArtMethod::NumArgRegisters(base_method->GetShorty()); in GetArgumentsSize() local 150 arg_count++; in GetArgumentsSize() 152 *size_ptr = static_cast<jint>(arg_count); in GetArgumentsSize()
|
/art/runtime/jdwp/ |
D | jdwp_handler.cc | 94 int32_t arg_count = request->ReadSigned32("argument count"); in RequestInvoke() local 101 VLOG(jdwp) << StringPrintf(" %d args:", arg_count); in RequestInvoke() 103 std::unique_ptr<JdwpTag[]> argTypes(arg_count > 0 ? new JdwpTag[arg_count] : nullptr); in RequestInvoke() 104 std::unique_ptr<uint64_t[]> argValues(arg_count > 0 ? new uint64_t[arg_count] : nullptr); in RequestInvoke() 105 for (int32_t i = 0; i < arg_count; ++i) { in RequestInvoke() 119 class_id, method_id, arg_count, in RequestInvoke()
|
/art/runtime/ |
D | debugger.h | 63 klass(invoke_class), method(invoke_method), arg_count(args_count), arg_values(args), in DebugInvokeReq() 77 const uint32_t arg_count; member 618 JDWP::MethodId method_id, uint32_t arg_count,
|
D | reflection.cc | 632 uint32_t arg_count = (objects != nullptr) ? objects->GetLength() : 0; in InvokeMethod() local 633 if (arg_count != classes_size) { in InvokeMethod() 635 classes_size, arg_count).c_str()); in InvokeMethod()
|
D | debugger.cc | 3906 JDWP::MethodId method_id, uint32_t arg_count, in PrepareInvokeMethod() argument 3995 if (shorty_len - 1 != arg_count) { in PrepareInvokeMethod() 4004 for (size_t i = 0; i < arg_count; ++i) { in PrepareInvokeMethod() 4030 options, arg_values, arg_count); in PrepareInvokeMethod() 4116 << " arg_count=" << pReq->arg_count; in ExecuteMethodWithoutPendingException()
|
/art/runtime/verifier/ |
D | method_verifier.cc | 4615 uint32_t arg_count = (is_range) ? inst->VRegA_3rc() : inst->VRegA_35c(); in VerifyNewArray() local 4620 for (size_t ui = 0; ui < arg_count; ui++) { in VerifyNewArray()
|