Home | History | Annotate | Download | only in jdwp

Lines Matching full:location

144   JdwpLocation location;
145 memset(&location, 0, sizeof(location)); // Allows memcmp(3) later.
146 location.type_tag = ReadTypeTag();
147 location.class_id = ReadObjectId("class");
148 location.method_id = ReadMethodId();
149 location.dex_pc = Read8BE();
150 VLOG(jdwp) << " location " << location;
151 return location;