Searched refs:wired_count (Results 1 - 15 of 15) sorted by relevance

/xnu-2422.115.4/osfmk/i386/
H A Dpmap_x86_common.c605 OSAddAtomic(+1, &pmap->stats.wired_count);
610 assert(pmap->stats.wired_count >= 1);
611 OSAddAtomic(-1, &pmap->stats.wired_count);
694 assert(pmap->stats.wired_count >= 1);
695 OSAddAtomic(-1, &pmap->stats.wired_count);
723 assert(pmap->stats.wired_count >= 1);
724 OSAddAtomic(-1, &pmap->stats.wired_count);
875 OSAddAtomic(+1, & pmap->stats.wired_count);
1117 if (pmap->stats.wired_count < num_unwired)
1118 panic("pmap_remove_range: wired_count");
[all...]
/xnu-2422.115.4/osfmk/vm/
H A Dvm_map.c314 (NEW)->wired_count = 0; \
1339 new_entry->wired_count = 0;
2022 (entry->wired_count == 0)) { /* implies user_wired_count == 0 */
4014 * The first time the user wires an entry, we also increment the wired_count and add this to
4018 if (entry->wired_count >= MAX_WIRE_COUNT)
4021 entry->wired_count++;
4036 if (entry->wired_count >= MAX_WIRE_COUNT)
4039 entry->wired_count++;
4065 * We're removing the last user wire reference. Decrement the wired_count and the total
4069 assert(entry->wired_count >
11719 vm_map_entry_insert( vm_map_t map, vm_map_entry_t insp_entry, vm_map_offset_t start, vm_map_offset_t end, vm_object_t object, vm_object_offset_t offset, boolean_t needs_copy, boolean_t is_shared, boolean_t in_transition, vm_prot_t cur_protection, vm_prot_t max_protection, vm_behavior_t behavior, vm_inherit_t inheritance, unsigned wired_count, boolean_t no_cache, boolean_t permanent, unsigned int superpage_size, boolean_t clear_map_aligned) argument
13831 vm_map_freeze_walk( vm_map_t map, unsigned int *purgeable_count, unsigned int *wired_count, unsigned int *clean_count, unsigned int *dirty_count, unsigned int dirty_budget, boolean_t *has_shared) argument
13884 vm_map_freeze( vm_map_t map, unsigned int *purgeable_count, unsigned int *wired_count, unsigned int *clean_count, unsigned int *dirty_count, unsigned int dirty_budget, boolean_t *has_shared) argument
[all...]
H A Dvm_map.h248 unsigned short wired_count; /* can be paged if = 0 */ member in struct:vm_map_entry
559 unsigned wired_count,
1202 unsigned int *wired_count,
1211 unsigned int *wired_count,
H A Ddefault_freezer.c236 unsigned int *wired_count,
250 kr = vm_object_pack(purgeable_count, wired_count, clean_count, dirty_count, dirty_budget, shared, src_object, df_handle);
234 default_freezer_pack( unsigned int *purgeable_count, unsigned int *wired_count, unsigned int *clean_count, unsigned int *dirty_count, unsigned int dirty_budget, boolean_t *shared, vm_object_t src_object, default_freezer_handle_t df_handle) argument
H A Dvm_debug.c184 region.vir_wired_count = entry->wired_count;
398 region.vir_wired_count = entry->wired_count;
H A Dvm_object.h741 unsigned int *wired_count,
751 unsigned int *wired_count,
H A Dvm_protos.h362 unsigned int *wired_count,
H A Dvm_kern.c408 entry->wired_count++;
867 assert (newentry->wired_count == 0);
H A Dvm_user.c2324 if(map_entry->wired_count) {
2374 if ((next_entry->wired_count) &&
2375 (map_entry->wired_count == 0)) {
2507 assert((next_entry->wired_count == 0) ||
2508 (map_entry->wired_count));
H A Dvm_object.c7855 unsigned int *wired_count,
7867 *purgeable_count = *wired_count = *clean_count = *dirty_count = 0;
7897 vm_object_pack_pages(wired_count, clean_count, dirty_count, dirty_budget, src_object, df_handle);
7912 unsigned int *wired_count,
7940 (*wired_count)++;
7853 vm_object_pack( unsigned int *purgeable_count, unsigned int *wired_count, unsigned int *clean_count, unsigned int *dirty_count, unsigned int dirty_budget, boolean_t *shared, vm_object_t src_object, struct default_freezer_handle *df_handle) argument
7911 vm_object_pack_pages( unsigned int *wired_count, unsigned int *clean_count, unsigned int *dirty_count, unsigned int dirty_budget, vm_object_t src_object, struct default_freezer_handle *df_handle) argument
/xnu-2422.115.4/osfmk/mach/
H A Dvm_statistics.h238 integer_t wired_count; /* # of pages wired */ member in struct:pmap_statistics
/xnu-2422.115.4/tools/lldbmacros/
H A Dmemory.py867 vmstats.wired_count = 0
881 entry_format = "{p.p_pid: >10d} {p.p_comm: <20s} {m.hdr.nentries: >6d} {s.wired_count: >10d} {vsize: >10d} {s.resident_count: >10d} {s.new_resident_count: >10d} {s.resident_max: >10d} {s.internal: >10d} {s.external: >10d} {s.reusable: >10d} {s.compressed: >10d} {s.compressed_peak: >10d} {s.compressed_lifetime: >10d} {s.error}"
887 vmstats.wired_count = vmmap.pmap.stats.wired_count;
/xnu-2422.115.4/osfmk/kern/
H A Dtask.h413 uint32_t *wired_count,
H A Dtask.c1972 uint32_t *wired_count,
2003 kr = vm_map_freeze_walk(task->map, purgeable_count, wired_count, clean_count, dirty_count, dirty_budget, shared);
2005 kr = vm_map_freeze(task->map, purgeable_count, wired_count, clean_count, dirty_count, dirty_budget, shared);
1969 task_freeze( register task_t task, uint32_t *purgeable_count, uint32_t *wired_count, uint32_t *clean_count, uint32_t *dirty_count, uint32_t dirty_budget, boolean_t *shared, boolean_t walk_only) argument
/xnu-2422.115.4/osfmk/x86_64/
H A Dpmap.c1228 p->stats.wired_count = 0;

Completed in 178 milliseconds