Lines Matching defs:hpacket

269   Heap_packet hpacket;
288 collector_memset (&hpacket, 0, sizeof ( Heap_packet));
289 hpacket.comm.tsize = sizeof ( Heap_packet);
290 hpacket.comm.tstamp = gethrtime ();
291 hpacket.mtype = MALLOC_TRACE;
292 hpacket.size = (Size_type) size;
293 hpacket.vaddr = (intptr_t) ret;
294 hpacket.comm.frinfo = collector_interface->getFrameInfo (heap_hndl, hpacket.comm.tstamp, FRINFO_FROM_STACK, &hpacket);
295 collector_interface->writeDataRecord (heap_hndl, (Common_packet*) & hpacket);
306 Heap_packet hpacket;
328 collector_memset (&hpacket, 0, sizeof ( Heap_packet));
329 hpacket.comm.tsize = sizeof ( Heap_packet);
330 hpacket.comm.tstamp = ts;
331 hpacket.mtype = FREE_TRACE;
332 hpacket.vaddr = (intptr_t) ptr;
333 hpacket.comm.frinfo = collector_interface->getFrameInfo (heap_hndl, hpacket.comm.tstamp, FRINFO_FROM_STACK, &hpacket);
334 collector_interface->writeDataRecord (heap_hndl, (Common_packet*) & hpacket);
345 Heap_packet hpacket;
365 collector_memset (&hpacket, 0, sizeof ( Heap_packet));
366 hpacket.comm.tsize = sizeof ( Heap_packet);
367 hpacket.comm.tstamp = ts;
368 hpacket.mtype = REALLOC_TRACE;
369 hpacket.size = (Size_type) size;
370 hpacket.vaddr = (intptr_t) ret;
371 hpacket.comm.frinfo = collector_interface->getFrameInfo (heap_hndl, hpacket.comm.tstamp, FRINFO_FROM_STACK, &hpacket);
372 collector_interface->writeDataRecord (heap_hndl, (Common_packet*) & hpacket);
383 Heap_packet hpacket;
393 collector_memset (&hpacket, 0, sizeof ( Heap_packet));
394 hpacket.comm.tsize = sizeof ( Heap_packet);
395 hpacket.comm.tstamp = gethrtime ();
396 hpacket.mtype = MALLOC_TRACE;
397 hpacket.size = (Size_type) size;
398 hpacket.vaddr = (intptr_t) ret;
399 hpacket.comm.frinfo = collector_interface->getFrameInfo (heap_hndl, hpacket.comm.tstamp, FRINFO_FROM_STACK, &hpacket);
400 collector_interface->writeDataRecord (heap_hndl, (Common_packet*) & hpacket);
412 Heap_packet hpacket;
422 collector_memset (&hpacket, 0, sizeof ( Heap_packet));
423 hpacket.comm.tsize = sizeof ( Heap_packet);
424 hpacket.comm.tstamp = gethrtime ();
425 hpacket.mtype = MALLOC_TRACE;
426 hpacket.size = (Size_type) size;
427 hpacket.vaddr = (intptr_t) ret;
428 hpacket.comm.frinfo = collector_interface->getFrameInfo (heap_hndl, hpacket.comm.tstamp, FRINFO_FROM_STACK, &hpacket);
429 collector_interface->writeDataRecord (heap_hndl, (Common_packet*) & hpacket);
440 Heap_packet hpacket;
454 collector_memset (&hpacket, 0, sizeof ( Heap_packet));
455 hpacket.comm.tsize = sizeof ( Heap_packet);
456 hpacket.comm.tstamp = gethrtime ();
457 hpacket.mtype = MALLOC_TRACE;
458 hpacket.size = (Size_type) (size * esize);
459 hpacket.vaddr = (intptr_t) ret;
460 hpacket.comm.frinfo = collector_interface->getFrameInfo (heap_hndl, hpacket.comm.tstamp, FRINFO_FROM_STACK, &hpacket);
461 collector_interface->writeDataRecord (heap_hndl, (Common_packet*) & hpacket);
473 Heap_packet hpacket;
477 collector_memset (&hpacket, 0, sizeof ( Heap_packet));
478 hpacket.comm.tsize = sizeof ( Heap_packet);
479 hpacket.comm.tstamp = gethrtime ();
480 hpacket.mtype = mtype;
481 hpacket.size = (Size_type) size;
482 hpacket.vaddr = (intptr_t) vaddr;
483 hpacket.comm.frinfo = collector_interface->getFrameInfo (heap_hndl, hpacket.comm.tstamp, FRINFO_FROM_STACK, &hpacket);
484 collector_interface->writeDataRecord (heap_hndl, (Common_packet*) & hpacket);