Home
last modified time | relevance | path

Searched refs:mods (Results 1 – 3 of 3) sorted by relevance

/art/runtime/jdwp/
Djdwp_event.cc186 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()
[all …]
Djdwp_event.h100 JdwpEventMod mods[1]; /* MUST be last field in struct */ member
Djdwp_handler.cc1249 JdwpEventMod& mod = pEvent->mods[i]; in ER_Set()