Lines Matching refs:mods
186 const JdwpEventMod* pMod = &pEvent->mods[i]; in RegisterEvent()
269 JdwpEventMod* pMod = &pEvent->mods[i]; in UnregisterEvent()
363 int allocSize = offsetof(JdwpEvent, mods) + numMods * sizeof(newEvent->mods[0]); in EventAlloc()
388 if (pEvent->mods[i].modKind == MK_CLASS_MATCH) { in EventFree()
389 free(pEvent->mods[i].classMatch.classPattern); in EventFree()
390 pEvent->mods[i].classMatch.classPattern = NULL; in EventFree()
392 if (pEvent->mods[i].modKind == MK_CLASS_EXCLUDE) { in EventFree()
393 free(pEvent->mods[i].classExclude.classPattern); in EventFree()
394 pEvent->mods[i].classExclude.classPattern = NULL; in EventFree()
422 if (pEvent->mods[i].modKind == MK_COUNT && pEvent->mods[i].count.count == 0) { in CleanupMatchList()
466 JdwpEventMod* pMod = pEvent->mods; in ModsMatch()