Home
last modified time | relevance | path

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

/art/runtime/
Dreflection.cc65 uint32_t arg_count = (objects != NULL) ? objects->GetLength() : 0; in InvokeMethod() local
66 if (arg_count != classes_size) { in InvokeMethod()
69 classes_size, arg_count).c_str()); in InvokeMethod()
74 UniquePtr<jvalue[]> args(new jvalue[arg_count]); in InvokeMethod()
76 for (uint32_t i = 0; i < arg_count; ++i) { in InvokeMethod()
Ddebugger.h362 uint32_t arg_count, uint64_t* arg_values,
Ddebugger.cc2625 uint32_t arg_count, uint64_t* arg_values, in InvokeMethod() argument
2705 if (mh.GetShortyLength() - 1 != arg_count) { in InvokeMethod()
2710 for (size_t i = 0; i < arg_count; ++i) { in InvokeMethod()
2736 req->arg_count_ = arg_count; in InvokeMethod()
/art/runtime/jdwp/
Djdwp_handler.cc100 int32_t arg_count = request.ReadSigned32("argument count"); in FinishInvoke() local
106 VLOG(jdwp) << StringPrintf(" %d args:", arg_count); in FinishInvoke()
108 UniquePtr<JdwpTag[]> argTypes(arg_count > 0 ? new JdwpTag[arg_count] : NULL); in FinishInvoke()
109 UniquePtr<uint64_t[]> argValues(arg_count > 0 ? new uint64_t[arg_count] : NULL); in FinishInvoke()
110 for (int32_t i = 0; i < arg_count; ++i) { in FinishInvoke()
125 …JdwpError err = Dbg::InvokeMethod(thread_id, object_id, class_id, method_id, arg_count, argValues.… in FinishInvoke()
/art/runtime/verifier/
Dmethod_verifier.cc3263 uint32_t arg_count = (is_range) ? inst->VRegA_3rc() : inst->VRegA_35c(); in VerifyNewArray() local
3268 for (size_t ui = 0; ui < arg_count; ui++) { in VerifyNewArray()