Home
last modified time | relevance | path

Searched refs:hpte (Results 1 – 4 of 4) sorted by relevance

/freebsd-9-stable/lib/libkvm/
Dkvm_minidump_arm.c59 struct hpte { struct
60 struct hpte *next; argument
79 struct hpte *hpte; in hpt_insert() argument
84 hpte = malloc(sizeof(*hpte)); in hpt_insert()
85 hpte->pa = pa; in hpt_insert()
86 hpte->off = off; in hpt_insert()
87 hpte->next = kd->vmst->hpt_head[fnv]; in hpt_insert()
88 kd->vmst->hpt_head[fnv] = hpte; in hpt_insert()
94 struct hpte *hpte; in hpt_find() local
99 for (hpte = kd->vmst->hpt_head[fnv]; hpte != NULL; hpte = hpte->next) in hpt_find()
[all …]
Dkvm_minidump_mips.c60 struct hpte { struct
61 struct hpte *next; argument
80 struct hpte *hpte; in hpt_insert() argument
85 hpte = malloc(sizeof(*hpte)); in hpt_insert()
86 hpte->pa = pa; in hpt_insert()
87 hpte->off = off; in hpt_insert()
88 hpte->next = kd->vmst->hpt_head[fnv]; in hpt_insert()
89 kd->vmst->hpt_head[fnv] = hpte; in hpt_insert()
95 struct hpte *hpte; in hpt_find() local
100 for (hpte = kd->vmst->hpt_head[fnv]; hpte != NULL; hpte = hpte->next) in hpt_find()
[all …]
Dkvm_minidump_i386.c58 struct hpte { struct
59 struct hpte *next; argument
78 struct hpte *hpte; in hpt_insert() local
83 hpte = malloc(sizeof(*hpte)); in hpt_insert()
84 hpte->pa = pa; in hpt_insert()
85 hpte->off = off; in hpt_insert()
86 hpte->next = kd->vmst->hpt_head[fnv]; in hpt_insert()
87 kd->vmst->hpt_head[fnv] = hpte; in hpt_insert()
93 struct hpte *hpte; in hpt_find() local
98 for (hpte = kd->vmst->hpt_head[fnv]; hpte != NULL; hpte = hpte->next) { in hpt_find()
[all …]
Dkvm_minidump_amd64.c56 struct hpte { struct
57 struct hpte *next; argument
76 struct hpte *hpte; in hpt_insert() argument
81 hpte = malloc(sizeof(*hpte)); in hpt_insert()
82 hpte->pa = pa; in hpt_insert()
83 hpte->off = off; in hpt_insert()
84 hpte->next = kd->vmst->hpt_head[fnv]; in hpt_insert()
85 kd->vmst->hpt_head[fnv] = hpte; in hpt_insert()
91 struct hpte *hpte; in hpt_find() local
96 for (hpte = kd->vmst->hpt_head[fnv]; hpte != NULL; hpte = hpte->next) { in hpt_find()
[all …]