Lines Matching defs:hpacket

277   Heap_packet hpacket;
296 collector_memset (&hpacket, 0, sizeof ( Heap_packet));
297 hpacket.comm.tsize = sizeof ( Heap_packet);
298 hpacket.comm.tstamp = gethrtime ();
299 hpacket.mtype = MALLOC_TRACE;
300 hpacket.size = (Size_type) size;
301 hpacket.vaddr = (intptr_t) ret;
302 hpacket.comm.frinfo = collector_interface->getFrameInfo (heap_hndl, hpacket.comm.tstamp, FRINFO_FROM_STACK, &hpacket);
303 collector_interface->writeDataRecord (heap_hndl, (Common_packet*) & hpacket);
314 Heap_packet hpacket;
336 collector_memset (&hpacket, 0, sizeof ( Heap_packet));
337 hpacket.comm.tsize = sizeof ( Heap_packet);
338 hpacket.comm.tstamp = ts;
339 hpacket.mtype = FREE_TRACE;
340 hpacket.vaddr = (intptr_t) ptr;
341 hpacket.comm.frinfo = collector_interface->getFrameInfo (heap_hndl, hpacket.comm.tstamp, FRINFO_FROM_STACK, &hpacket);
342 collector_interface->writeDataRecord (heap_hndl, (Common_packet*) & hpacket);
353 Heap_packet hpacket;
373 collector_memset (&hpacket, 0, sizeof ( Heap_packet));
374 hpacket.comm.tsize = sizeof ( Heap_packet);
375 hpacket.comm.tstamp = ts;
376 hpacket.mtype = REALLOC_TRACE;
377 hpacket.size = (Size_type) size;
378 hpacket.vaddr = (intptr_t) ret;
379 hpacket.comm.frinfo = collector_interface->getFrameInfo (heap_hndl, hpacket.comm.tstamp, FRINFO_FROM_STACK, &hpacket);
380 collector_interface->writeDataRecord (heap_hndl, (Common_packet*) & hpacket);
391 Heap_packet hpacket;
401 collector_memset (&hpacket, 0, sizeof ( Heap_packet));
402 hpacket.comm.tsize = sizeof ( Heap_packet);
403 hpacket.comm.tstamp = gethrtime ();
404 hpacket.mtype = MALLOC_TRACE;
405 hpacket.size = (Size_type) size;
406 hpacket.vaddr = (intptr_t) ret;
407 hpacket.comm.frinfo = collector_interface->getFrameInfo (heap_hndl, hpacket.comm.tstamp, FRINFO_FROM_STACK, &hpacket);
408 collector_interface->writeDataRecord (heap_hndl, (Common_packet*) & hpacket);
420 Heap_packet hpacket;
430 collector_memset (&hpacket, 0, sizeof ( Heap_packet));
431 hpacket.comm.tsize = sizeof ( Heap_packet);
432 hpacket.comm.tstamp = gethrtime ();
433 hpacket.mtype = MALLOC_TRACE;
434 hpacket.size = (Size_type) size;
435 hpacket.vaddr = (intptr_t) ret;
436 hpacket.comm.frinfo = collector_interface->getFrameInfo (heap_hndl, hpacket.comm.tstamp, FRINFO_FROM_STACK, &hpacket);
437 collector_interface->writeDataRecord (heap_hndl, (Common_packet*) & hpacket);
448 Heap_packet hpacket;
462 collector_memset (&hpacket, 0, sizeof ( Heap_packet));
463 hpacket.comm.tsize = sizeof ( Heap_packet);
464 hpacket.comm.tstamp = gethrtime ();
465 hpacket.mtype = MALLOC_TRACE;
466 hpacket.size = (Size_type) (size * esize);
467 hpacket.vaddr = (intptr_t) ret;
468 hpacket.comm.frinfo = collector_interface->getFrameInfo (heap_hndl, hpacket.comm.tstamp, FRINFO_FROM_STACK, &hpacket);
469 collector_interface->writeDataRecord (heap_hndl, (Common_packet*) & hpacket);
481 Heap_packet hpacket;
485 collector_memset (&hpacket, 0, sizeof ( Heap_packet));
486 hpacket.comm.tsize = sizeof ( Heap_packet);
487 hpacket.comm.tstamp = gethrtime ();
488 hpacket.mtype = mtype;
489 hpacket.size = (Size_type) size;
490 hpacket.vaddr = (intptr_t) vaddr;
491 hpacket.comm.frinfo = collector_interface->getFrameInfo (heap_hndl, hpacket.comm.tstamp, FRINFO_FROM_STACK, &hpacket);
492 collector_interface->writeDataRecord (heap_hndl, (Common_packet*) & hpacket);