Home | History | Annotate | Download | only in jdwp

Lines Matching refs:newEvent

405   JdwpEvent* newEvent;
406 int allocSize = offsetof(JdwpEvent, mods) + numMods * sizeof(newEvent->mods[0]);
407 newEvent = reinterpret_cast<JdwpEvent*>(malloc(allocSize));
408 memset(newEvent, 0, allocSize);
409 return newEvent;