Lines Matching refs:JdwpEvent
170 JdwpError dvmJdwpRegisterEvent(JdwpState* state, JdwpEvent* pEvent) in dvmJdwpRegisterEvent()
222 static void unregisterEvent(JdwpState* state, JdwpEvent* pEvent) in unregisterEvent()
269 JdwpEvent* pEvent; in dvmJdwpUnregisterEventById()
295 JdwpEvent* pEvent; in dvmJdwpUnregisterAll()
296 JdwpEvent* pNextEvent; in dvmJdwpUnregisterAll()
320 JdwpEvent* dvmJdwpEventAlloc(int numMods) in dvmJdwpEventAlloc()
322 JdwpEvent* newEvent; in dvmJdwpEventAlloc()
323 int allocSize = offsetof(JdwpEvent, mods) + in dvmJdwpEventAlloc()
326 newEvent = (JdwpEvent*)malloc(allocSize); in dvmJdwpEventAlloc()
336 void dvmJdwpEventFree(JdwpEvent* pEvent) in dvmJdwpEventFree()
371 static JdwpEvent** allocMatchList(JdwpState* state) in allocMatchList()
373 return (JdwpEvent**) malloc(sizeof(JdwpEvent*) * state->numEvents); in allocMatchList()
380 static void cleanupMatchList(JdwpState* state, JdwpEvent** matchList, in cleanupMatchList()
383 JdwpEvent** ppEvent = matchList; in cleanupMatchList()
386 JdwpEvent* pEvent = *ppEvent; in cleanupMatchList()
456 static bool modsMatch(JdwpState* state, JdwpEvent* pEvent, ModBasket* basket) in modsMatch()
534 ModBasket* basket, JdwpEvent** matchList, int* pMatchCount) in findMatchingEvents()
536 JdwpEvent* pEvent; in findMatchingEvents()
557 static enum JdwpSuspendPolicy scanSuspendPolicy(JdwpEvent** matchList, in scanSuspendPolicy()
814 JdwpEvent** matchList; in dvmJdwpPostLocationEvent()
927 JdwpEvent** matchList; in dvmJdwpPostThreadChange()
1037 JdwpEvent** matchList; in dvmJdwpPostException()
1139 JdwpEvent** matchList; in dvmJdwpPostClassPrepare()