Lines Matching refs:kprintf

584 	kprintf("stack trace:\n");
595 kprintf(" %p %s + 0x%lx (%s)%s\n", (void*)address, symbol,
599 kprintf(" %p\n", (void*)address);
630 kprintf("didn't find area for address\n");
637 kprintf("page index: %" B_PRIuSIZE "\n", pageIndex);
638 kprintf("flags:");
640 kprintf(" used");
642 kprintf(" first");
644 kprintf(" guard");
646 kprintf(" dead");
647 kprintf("\n");
649 kprintf("allocation size: %" B_PRIuSIZE "\n", page.allocation_size);
650 kprintf("allocation base: %p\n", page.allocation_base);
651 kprintf("alignment: %" B_PRIuSIZE "\n", page.alignment);
652 kprintf("allocating team: %" B_PRId32 "\n", page.team);
653 kprintf("allocating thread: %" B_PRId32 "\n", page.thread);
687 kprintf("didn't find area for address\n");
691 kprintf("guarded heap area: %p\n", area);
692 kprintf("next heap area: %p\n", area->next);
693 kprintf("guarded heap: %p\n", area->heap);
694 kprintf("area id: %" B_PRId32 "\n", area->area);
695 kprintf("base: 0x%" B_PRIxADDR "\n", area->base);
696 kprintf("size: %" B_PRIuSIZE "\n", area->size);
697 kprintf("page count: %" B_PRIuSIZE "\n", area->page_count);
698 kprintf("used pages: %" B_PRIuSIZE "\n", area->used_pages);
699 kprintf("protection cookie: %p\n", area->protection_cookie);
700 kprintf("lock: %p\n", &area->lock);
709 kprintf("free list broken, page %p not actually free\n", item);
715 kprintf("free_list: %p (%" B_PRIuSIZE " free)\n", &area->free_list,
743 kprintf("longest free run: %" B_PRIuSIZE " (%" B_PRIuSIZE " free)\n",
746 kprintf("pages: %p\n", area->pages);
765 kprintf("guarded heap: %p\n", heap);
766 kprintf("rw lock: %p\n", &heap->lock);
767 kprintf("page count: %" B_PRIuSIZE "\n", heap->page_count);
768 kprintf("used pages: %" B_PRIuSIZE "\n", heap->used_pages);
769 kprintf("area creation counter: %" B_PRId32 "\n",
779 kprintf("areas: %p (%" B_PRIuSIZE ")\n", heap->areas, areaCount);
828 kprintf("team: % 6" B_PRId32 "; thread: % 6" B_PRId32 "; "
845 kprintf("total allocations: %" B_PRIu32 "; total bytes: %" B_PRIuSIZE