Searched defs:lkb (Results 1 - 3 of 3) sorted by relevance

/illumos-gate/usr/src/cmd/mdb/common/modules/genunix/
H A Dleaky_subr.c662 leaky_subr_dump(const leak_bufctl_t *lkb, int verbose) argument
676 switch (lkb->lkb_type) {
684 min = max = lkb->lkb_data;
686 for (cur = lkb; cur != NULL; cur = cur->lkb_next) {
705 leaky_subr_caller(lkb->lkb_stack, lkb->lkb_depth,
715 mdb_printf("%-16s %7d %?p %s\n", sz, lkb->lkb_dups + 1,
716 lkb->lkb_addr, c);
731 if (mdb_call_dcmd("vmem_seg", lkb->lkb_addr,
734 lkb
896 leaky_subr_invoke_callback(const leak_bufctl_t *lkb, mdb_walk_cb_t cb, void *cbdata) argument
[all...]
H A Dleaky.c471 leak_bufctl_t *nlkb, *lkb; local
498 if ((lkb = lk_bufctl[ndx]) == NULL) {
505 if (lkb->lkb_type != type || lkb->lkb_depth != depth ||
506 lkb->lkb_cid != cid)
510 if (lkb->lkb_stack[i] != stack[i])
520 ((volatile leak_bufctl_t *)nlkb)->lkb_next = lkb->lkb_next;
521 ((volatile leak_bufctl_t *)lkb)->lkb_next = nlkb;
522 lkb->lkb_dups++;
528 if (timestamp < lkb
564 leak_bufctl_t *lkb; local
597 leak_bufctl_t *lkb, *l, *next; local
693 leak_bufctl_t *lkb; local
893 leak_bufctl_t *lkb, *cur; local
[all...]
/illumos-gate/usr/src/cmd/mdb/common/modules/libumem/
H A Dleaky_subr.c884 leaky_subr_dump(const leak_bufctl_t *lkb, int verbose) argument
893 uint8_t type = lkb->lkb_type;
905 switch (lkb->lkb_type) {
908 nm = (lkb->lkb_type == TYPE_MMAP) ? "MMAP" : "SBRK";
909 nm_lc = (lkb->lkb_type == TYPE_MMAP) ? "mmap(2)" : "sbrk(2)";
911 for (; lkb != NULL; lkb = lkb->lkb_next) {
913 mdb_printf("%-16d %7d %?p %s\n", lkb->lkb_data,
914 lkb
1123 leaky_subr_invoke_callback(const leak_bufctl_t *lkb, mdb_walk_cb_t cb, void *cbdata) argument
[all...]

Completed in 65 milliseconds