Home | History | Annotate | Download | only in jdwp

Lines Matching refs:location

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