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

/macosx-10.10.1/system_cmds-643.1.1/vm_stat.tproj/
H A Dvm_stat.c138 sspstat("Pages wired down:", (uint64_t) (vm_stat.wire_count));
212 pstat((uint64_t) (vm_stat.wire_count), 8);
/macosx-10.10.1/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
/macosx-10.10.1/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;
/macosx-10.10.1/system_cmds-643.1.1/memory_pressure.tproj/
H A Dmemory_pressure.c152 printf("Pages wired down: %llu \n", (uint64_t) (vm_stat.wire_count));
/macosx-10.10.1/top-100.1.2/
H A Dglobalstats.c437 total_used_count = (uint64_t)tsamp->vm_stat.wire_count + tsamp->vm_stat.inactive_count
441 wiredresult = top_init_uinteger(tsamp->vm_stat.wire_count
H A Dlibtop.c956 tsamp->vm_stat.wire_count += tsamp->pages_stolen;
/macosx-10.10.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;
/macosx-10.10.1/xnu-2782.1.97/bsd/kern/
H A Dkern_memorystatus.c2215 memorystatus_jetsam_snapshot->stats.wired_pages = vm_stat.wire_count;

Completed in 544 milliseconds