Searched refs:wire_count (Results 1 - 9 of 9) sorted by relevance

/xnu-2782.1.97/osfmk/mach/
H A Dvm_statistics.h88 natural_t wire_count; /* # of pages wired down */ member in struct:vm_statistics
136 natural_t wire_count; /* # of pages wired down */ member in struct:vm_statistics64
/xnu-2782.1.97/osfmk/vm/
H A Dvm_page.h207 * we use the 'wire_count' field to store the local
212 #define local_id wire_count
213 unsigned int wire_count:16, /* how many wired down maps use me? (O&P) */ member in struct:vm_page
313 #define VM_PAGE_WIRED(m) ((!(m)->local && (m)->wire_count))
822 * this is why its safe to utilze the wire_count field in the vm_page_t as the local_id...
H A Dvm_kern.c446 mem->wire_count++;
646 mem->wire_count++;
H A Dvm_pageout.c551 assert(m->wire_count == 1);
6406 assert(m->wire_count == 0);
6412 if (m->wire_count == 0)
6413 panic("wire_count == 0, m = %p, obj = %p\n", m, shadow_object);
6420 assert(m->wire_count);
6421 m->wire_count--;
6423 if (m->wire_count == 0)
6426 if (m->wire_count == 0) {
7322 m->wire_count++;
7674 dst_page->wire_count
[all...]
H A Dvm_resident.c538 m->wire_count = 0;
2580 mem->wire_count = 0;
2920 mem->wire_count++;
2973 if (--mem->wire_count == 0) {
3773 printf(" wire_count=%u\n", p->wire_count);
4642 m1->wire_count++;
H A Dvm_map.c4758 assert(m->wire_count);
4759 if (m != VM_PAGE_NULL && m->wire_count) {
H A Dvm_object.c6125 m->wire_count = 1;
/xnu-2782.1.97/osfmk/kern/
H A Dhost.c361 stat32->wire_count = VM_STATISTICS_TRUNCATE_TO_32_BIT(vm_page_wire_count + vm_page_throttled_count + vm_lopage_free_count);
567 stat->wire_count = vm_page_wire_count + vm_page_throttled_count + vm_lopage_free_count;
/xnu-2782.1.97/bsd/kern/
H A Dkern_memorystatus.c2215 memorystatus_jetsam_snapshot->stats.wired_pages = vm_stat.wire_count;

Completed in 122 milliseconds