| /xnu-12377.61.12/libsyscall/mach/ |
| H A D | port_descriptions.c | 133 port_for_id_internal(const char *id, const char **ids, int nids) in port_for_id_internal() argument 141 if (ids[i] && strcmp(ids[i], id) == 0) { in port_for_id_internal()
|
| /xnu-12377.61.12/tests/vm/ |
| H A D | vm_reclaim.c | 769 mach_vm_reclaim_id_t ids[4095] = {0}; variable 784 ids[i] = allocate_and_defer_deallocate(vm_page_size, ringbuffer, 'A', &addrs[i]); 785 T_QUIET; T_ASSERT_NE(ids[i], VM_RECLAIM_ID_NULL, "Able to defer deallocation"); 810 kr = mach_vm_reclaim_query_state(ringbuffer, ids[i], VM_RECLAIM_DEALLOCATE, &state); 813 bool usable = try_cancel(ringbuffer, ids[i], addrs[i], vm_page_size, VM_RECLAIM_DEALLOCATE); 819 ids[i] = allocate_and_defer_deallocate(vm_page_size, ringbuffer, 'B', &addrs[i]); 820 T_QUIET; T_ASSERT_NE(ids[i], VM_RECLAIM_ID_NULL, "Able to defer deallocation"); 826 bool usable = try_cancel(ringbuffer, ids[i], addrs[i], vm_page_size, VM_RECLAIM_DEALLOCATE); 904 mach_vm_reclaim_id_t ids[QUERY_BUFFER_RING_COUNT]; variable 927 ids[i] = allocate_and_defer_free(sizes[i], self_ring, 'A', actions[i], &addrs[i]); [all …]
|
| H A D | memorystatus_sort_test.c | 28 uint64_t ids[COALITION_NUM_TYPES]; member 457 ret = coalition_create(&coalition->ids[i], flags); in init_coalition() 500 pid_t pid = launch_proc_in_coalition(coalition->ids, role, pages); in init_coalition()
|
| /xnu-12377.61.12/osfmk/i386/ |
| H A D | pcb.c | 296 if (pcb->ids == NULL) { in set_debug_state32() 301 if (pcb->ids == NULL) { in set_debug_state32() 302 pcb->ids = new_ids; in set_debug_state32() 311 copy_debug_state32(ds, pcb->ids, FALSE); in set_debug_state32() 328 if (pcb->ids == NULL) { in set_debug_state64() 340 if (pcb->ids == NULL) { in set_debug_state64() 341 pcb->ids = new_ids; in set_debug_state64() 349 copy_debug_state64(ds, pcb->ids, FALSE); in set_debug_state64() 359 saved_state = thread->machine.ids; in get_debug_state32() 373 saved_state = (x86_debug_state64_t *)thread->machine.ids; in get_debug_state64() [all …]
|
| H A D | trap.c | 1148 if (thread->machine.ids) { in user_trap() 1201 if (pcb->ids) { in user_trap() 1209 x86_debug_state64_t *ids = pcb->ids; in user_trap() local 1210 ids->dr6 = dr6; in user_trap() 1212 x86_debug_state32_t *ids = pcb->ids; in user_trap() local 1213 ids->dr6 = (uint32_t) dr6; in user_trap()
|
| H A D | thread.h | 124 void *ids; member
|
| H A D | pcb_native.c | 859 if (pcb->ids) { in machine_thread_destroy() 860 zfree(ids_zone, pcb->ids); in machine_thread_destroy() 861 pcb->ids = NULL; in machine_thread_destroy()
|
| H A D | genassym.c | 147 DECLARE("TH_PCB_IDS", offsetof(struct thread, machine.ids)); in main()
|
| /xnu-12377.61.12/bsd/kern/ |
| H A D | sys_coalition.c | 663 uint64_t ids[COALITION_NUM_TYPES] = {}; variable 683 task_coalition_ids(proc_task(tproc), ids); 686 return SYSCTL_OUT(req, ids, sizeof(ids));
|
| H A D | kern_proc.c | 2096 proc_coalitionids(__unused proc_t p, __unused uint64_t ids[COALITION_NUM_TYPES]) in proc_coalitionids() 2099 task_coalition_ids(proc_task(p), ids); in proc_coalitionids() 2101 memset(ids, 0, sizeof(uint64_t[COALITION_NUM_TYPES])); in proc_coalitionids()
|
| H A D | kern_exit.c | 187 extern void task_coalition_ids(task_t task, uint64_t ids[COALITION_NUM_TYPES]);
|
| /xnu-12377.61.12/osfmk/kern/ |
| H A D | hv_support_kext.c | 129 is_volatile = (current_thread()->machine.ids != NULL); in hv_get_volatile_state()
|
| H A D | coalition.h | 64 void task_coalition_ids(task_t task, uint64_t ids[COALITION_NUM_TYPES]);
|
| H A D | coalition.c | 1529 task_coalition_ids(task_t task, uint64_t ids[COALITION_NUM_TYPES]) in task_coalition_ids() 1534 ids[i] = task->coalition[i]->id; in task_coalition_ids() 1536 ids[i] = 0; in task_coalition_ids()
|
| H A D | kern_stackshot.c | 4770 uint64_t ids[UNIQUEIDSPERFLUSH]; member
|
| /xnu-12377.61.12/tools/lldbmacros/ |
| H A D | ioreg.py | 2031 for ids in region_id_list: 2032 mm_entry = LookupKeyInOSDict(memory_map.fPropertyTable, ids, CompareStringToOSSymbol) 2034 print("Couldn't find " + ids + " entry in carveout-memory-map")
|