Home | History | Annotate | Download | only in jdwp

Lines Matching defs:mod

1256     JdwpEventMod& mod = pEvent->mods[i];
1257 mod.modKind = request.ReadModKind();
1258 switch (mod.modKind) {
1266 mod.count.count = count;
1273 mod.conditional.exprId = exprId;
1280 mod.threadOnly.threadId = thread_id;
1287 mod.classOnly.refTypeId = class_id;
1296 mod.classMatch.classPattern = strdup(pattern.c_str());
1305 mod.classExclude.classPattern = strdup(pattern.c_str());
1312 mod.locationOnly.loc = location;
1318 mod.exceptionOnly.refTypeId = request.ReadRefTypeId(); // null => all exceptions.
1319 mod.exceptionOnly.caught = request.ReadEnum1<uint8_t>("caught");
1320 mod.exceptionOnly.uncaught = request.ReadEnum1<uint8_t>("uncaught");
1328 mod.fieldOnly.refTypeId = declaring;
1329 mod.fieldOnly.fieldId = fieldId;
1341 mod.step.threadId = thread_id;
1342 mod.step.size = size;
1343 mod.step.depth = depth;
1350 mod.instanceOnly.objectId = instance;
1354 LOG(WARNING) << "GLITCH: unsupported modKind=" << mod.modKind;