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

/art/runtime/openjdkjvmti/
H A Dti_method.cc114 size_t arg_count = art::ArtMethod::NumArgRegisters(base_method->GetShorty()); local
116 arg_count++;
118 *size_ptr = static_cast<jint>(arg_count);
/art/runtime/jdwp/
H A Djdwp_handler.cc94 int32_t arg_count = request->ReadSigned32("argument count"); local
101 VLOG(jdwp) << StringPrintf(" %d args:", arg_count);
103 std::unique_ptr<JdwpTag[]> argTypes(arg_count > 0 ? new JdwpTag[arg_count] : nullptr);
104 std::unique_ptr<uint64_t[]> argValues(arg_count > 0 ? new uint64_t[arg_count] : nullptr);
105 for (int32_t i = 0; i < arg_count; ++i) {
119 class_id, method_id, arg_count,
/art/runtime/
H A Ddebugger.h63 klass(invoke_class), method(invoke_method), arg_count(args_count), arg_values(args),
77 const uint32_t arg_count; member in struct:art::DebugInvokeReq
618 JDWP::MethodId method_id, uint32_t arg_count,
H A Dreflection.cc631 uint32_t arg_count = (objects != nullptr) ? objects->GetLength() : 0; local
632 if (arg_count != classes_size) {
634 classes_size, arg_count).c_str());
H A Ddebugger.cc1674 // arg_count considers doubles and longs to take 2 units.
3895 JDWP::MethodId method_id, uint32_t arg_count,
3984 if (shorty_len - 1 != arg_count) {
3993 for (size_t i = 0; i < arg_count; ++i) {
4019 options, arg_values, arg_count);
4104 << " arg_count=" << pReq->arg_count;
3893 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.cc4607 // Verify each register. If "arg_count" is bad, VerifyRegisterType() will run off the end of
4608 // the list and fail. It's legal, if silly, for arg_count to be zero.
4610 uint32_t arg_count = (is_range) ? inst->VRegA_3rc() : inst->VRegA_35c(); local
4615 for (size_t ui = 0; ui < arg_count; ui++) {

Completed in 464 milliseconds