Lines Matching refs:head

2721 		mdb_warn("failed to read list head at %p", addr);
3287 list_t head;
3293 if (mdb_vread(&head, sizeof (list_t), (uintptr_t)khead) == -1) {
3301 * head. So we need to calculate the address manually.
3303 if ((char *)head.list_head.list_next != khead +
3305 entry = list_object(&head, head.list_head.list_next);
3325 list_t head;
3345 if (mdb_vread(&head, sizeof (list_t), (uintptr_t)khead) == -1) {
3354 * compare list_next with the kernel address of the list head.
3359 wsp->walk_addr = (uintptr_t)list_object(&head,
3369 if (mdb_vread(&head, sizeof (list_t), (uintptr_t)khead) == -1) {
3374 if ((char *)head.list_head.list_next != khead +
3376 next_entry = list_object(&head,
3377 head.list_head.list_next);
3406 ilb_conn_hash_t head;
3431 if (mdb_vread(&head, sizeof (ilb_conn_hash_t),
3438 if (head.ilb_connp != NULL)
3442 if (head.ilb_connp == NULL)
3445 wsp->walk_addr = (uintptr_t)head.ilb_connp;
3457 ilb_conn_hash_t head;
3484 if (mdb_vread(&head, sizeof (ilb_conn_hash_t),
3491 if (head.ilb_connp != NULL)
3495 if (head.ilb_connp == NULL)
3498 wsp->walk_addr = (uintptr_t)head.ilb_connp;
3528 list_t head;
3534 if (mdb_vread(&head, sizeof (list_t), (uintptr_t)khead) == -1) {
3543 * head. So we need to calculate the address manually.
3545 if ((char *)head.list_head.list_next != khead +
3547 st = list_object(&head, head.list_head.list_next);
3567 list_t head;
3586 if (mdb_vread(&head, sizeof (list_t), (uintptr_t)khead) == -1) {
3595 * compare list_next with the kernel address of the list head.
3600 wsp->walk_addr = (uintptr_t)list_object(&head,
3610 if (mdb_vread(&head, sizeof (list_t), (uintptr_t)khead) == -1) {
3616 if ((char *)head.list_head.list_next != khead +
3618 st_next = list_object(&head,
3619 head.list_head.list_next);