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

/art/runtime/
H A Ddebugger.h58 arg_count(0), arg_values(NULL), options(0), error(JDWP::ERR_NONE),
75 uint32_t arg_count; member in struct:art::DebugInvokeReq
558 uint32_t arg_count, uint64_t* arg_values,
H A Dreflection.cc559 uint32_t arg_count = (objects != nullptr) ? objects->GetLength() : 0; local
560 if (arg_count != classes_size) {
563 classes_size, arg_count).c_str());
H A Ddebugger.cc1721 // arg_count considers doubles and longs to take 2 units.
3475 uint32_t arg_count, uint64_t* arg_values,
3556 if (shorty_len - 1 != arg_count) {
3566 for (size_t i = 0; i < arg_count; ++i) {
3595 req->arg_count = arg_count;
3698 << " arg_count=" << pReq->arg_count;
3473 InvokeMethod(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, JDWP::JdwpTag* pResultTag, uint64_t* pResultValue, JDWP::ObjectId* pExceptionId) argument
/art/runtime/jdwp/
H A Djdwp_handler.cc100 int32_t arg_count = request.ReadSigned32("argument count"); local
107 VLOG(jdwp) << StringPrintf(" %d args:", arg_count);
109 std::unique_ptr<JdwpTag[]> argTypes(arg_count > 0 ? new JdwpTag[arg_count] : NULL);
110 std::unique_ptr<uint64_t[]> argValues(arg_count > 0 ? new uint64_t[arg_count] : NULL);
111 for (int32_t i = 0; i < arg_count; ++i) {
127 JdwpError err = Dbg::InvokeMethod(thread_id, object_id, class_id, method_id, arg_count, argValues.get(), argTypes.get(), options, &resultTag, &resultValue, &exceptObjId);
/art/runtime/verifier/
H A Dmethod_verifier.cc3442 // Verify each register. If "arg_count" is bad, VerifyRegisterType() will run off the end of
3443 // the list and fail. It's legal, if silly, for arg_count to be zero.
3445 uint32_t arg_count = (is_range) ? inst->VRegA_3rc() : inst->VRegA_35c(); local
3450 for (size_t ui = 0; ui < arg_count; ui++) {

Completed in 1545 milliseconds