Home | History | Annotate | Download | only in jdwp

Lines Matching defs:arg_count

94   int32_t arg_count = request->ReadSigned32("argument count");
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,