• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.5.8/xnu-1228.15.4/osfmk/vm/

Lines Matching defs:obj

2690 			panic("vm_allocate_cpm:  obj 0x%x off 0x%x no page",
2706 printf("obj 0x%x off 0x%x\n", cpm_obj, offset);
7122 XPR(XPR_VM_MAP, "vm_map_copyin_common src_obj 0x%x ent 0x%x obj 0x%x was_wired %d\n",
8995 struct vm_object *obj, *tmp_obj;
9001 obj = entry->object.vm_object;
9003 vm_object_lock(obj);
9005 if ((ref_count = obj->ref_count) > 1 && obj->paging_in_progress)
9008 if (obj->shadow) {
9010 top->private_pages_resident = min(obj->resident_page_count, entry_size);
9012 top->shared_pages_resident = min(obj->resident_page_count, entry_size);
9016 while ((tmp_obj = obj->shadow)) {
9018 vm_object_unlock(obj);
9019 obj = tmp_obj;
9021 if ((ref_count = obj->ref_count) > 1 && obj->paging_in_progress)
9024 top->shared_pages_resident += min(obj->resident_page_count, entry_size);
9030 top->shared_pages_resident = min(obj->resident_page_count, entry_size);
9033 (ref_count == 2 && !(obj->pager_trusted) && !(obj->internal))) {
9035 top->private_pages_resident = min(obj->resident_page_count, entry_size);
9038 top->shared_pages_resident = min(obj->resident_page_count, entry_size);
9043 top->obj_id = (int)obj;
9045 vm_object_unlock(obj);
9059 register struct vm_object *obj, *tmp_obj;
9074 obj = entry->object.vm_object;
9076 vm_object_lock(obj);
9078 if ((ref_count = obj->ref_count) > 1 && obj->paging_in_progress)
9085 vm_map_region_look_for_page(map, va, obj,
9090 shadow_object = obj->shadow;
9115 if (obj->true_share)
9124 if ((tmp_obj = obj->shadow) == 0)
9127 vm_object_unlock(obj);
9133 obj = tmp_obj;
9135 vm_object_unlock(obj);
9142 obj = entry->object.vm_object;
9146 if ((ref_count = obj->ref_count) > 1 && obj->paging_in_progress)
9149 my_refs += vm_map_region_count_obj_refs(cur, obj);