Home
last modified time | relevance | path

Searched defs:target (Results 1 – 25 of 104) sorted by relevance

12345

/xnu-12377.61.12/osfmk/kern/
H A Dextmod_statistics.c73 extmod_statistics_incr_task_for_pid(task_t target) in extmod_statistics_incr_task_for_pid()
89 extmod_statistics_incr_thread_set_state(thread_t target) in extmod_statistics_incr_thread_set_state()
112 extmod_statistics_incr_thread_create(task_t target) in extmod_statistics_incr_thread_create()
130 extmod_statistics_log(task_t current_task, task_t target) in extmod_statistics_log()
H A Dhv_support_kext.c94 hv_set_task_target(void *target) in hv_set_task_target()
101 hv_set_thread_target(void *target) in hv_set_thread_target()
227 #define HV_TRAP_DISPATCH(type, index, target, argument) \ argument
/xnu-12377.61.12/iokit/Kernel/arm/
H A DAppleARMSMP.cpp265 PE_cpu_start_from_kext(cpu_id_t target, in PE_cpu_start_from_kext()
274 PE_cpu_start_internal(cpu_id_t target, in PE_cpu_start_internal()
293 PE_cpu_machine_init(cpu_id_t target, boolean_t bootb) in PE_cpu_machine_init()
326 PE_cpu_halt(cpu_id_t target) in PE_cpu_halt()
332 PE_cpu_signal(cpu_id_t /*source*/, cpu_id_t target) in PE_cpu_signal() argument
343 PE_cpu_signal_deferred(cpu_id_t /*source*/, cpu_id_t target) in PE_cpu_signal_deferred() argument
354 PE_cpu_signal_cancel(cpu_id_t /*source*/, cpu_id_t target) in PE_cpu_signal_cancel() argument
366 PE_cpu_machine_quiesce(cpu_id_t target) in PE_cpu_machine_quiesce()
398 PE_cpu_down(cpu_id_t target) in PE_cpu_down()
/xnu-12377.61.12/libsyscall/mach/
H A Dmach_vm.c49 mach_port_name_t target, in mach_vm_allocate()
72 mach_port_name_t target, in mach_vm_deallocate()
163 mach_port_name_t target, in mach_vm_map()
199 mach_port_name_t target, in mach_vm_remap()
228 mach_port_name_t target, in mach_vm_remap_new()
258 mach_port_name_t target, in mach_vm_read()
280 mach_port_name_t target, in vm_map()
308 mach_port_name_t target, in vm_remap()
337 mach_port_name_t target, in vm_remap_new()
367 mach_port_name_t target, in vm_read()
[all …]
/xnu-12377.61.12/iokit/Kernel/
H A DIOCPU.cpp94 PE_cpu_start_from_kext(cpu_id_t target, in PE_cpu_start_from_kext()
101 PE_cpu_start_internal(cpu_id_t target, in PE_cpu_start_internal()
113 PE_cpu_halt(cpu_id_t target) in PE_cpu_halt()
119 PE_cpu_signal(cpu_id_t source, cpu_id_t target) in PE_cpu_signal()
128 PE_cpu_signal_deferred(cpu_id_t source, cpu_id_t target) in PE_cpu_signal_deferred()
137 PE_cpu_signal_cancel(cpu_id_t source, cpu_id_t target) in PE_cpu_signal_cancel()
146 PE_cpu_machine_init(cpu_id_t target, boolean_t bootb) in PE_cpu_machine_init()
191 PE_cpu_machine_quiesce(cpu_id_t target) in PE_cpu_machine_quiesce()
214 PE_cpu_perfmon_interrupt_enable(cpu_id_t target, boolean_t enable) in PE_cpu_perfmon_interrupt_enable()
263 IOCPU *target; in IOCPUSleepKernel() local
[all …]
/xnu-12377.61.12/tools/lldbmacros/kmemory/
H A Dkmem.py31 def __init__(self, target, param_var): argument
88 def __init__(self, target): argument
185 def get_shared(target=None): argument
251 def __init__(self, target): argument
290 def __init__(self, target): argument
312 def __init__(self, name, target = None): argument
H A Dzone.py518 def get_zone_name(zid, target=None): argument
546 def _find_zone_id_by_mangled_name(name, target=None): argument
590 def elem_redzone(self, target=None): argument
598 def elem_inner_size(self, target=None): argument
604 def elem_outer_size(self, target=None): argument
612 def elem_inner_offs(self, target=None): argument
618 def chunk_pages(self, target=None): argument
624 def chunk_elems(self, target=None): argument
H A Dwhatis.py71 def __init__(self, target): argument
78 def get_shared(target=None): argument
/xnu-12377.61.12/tests/unit/mocks/fibers/
H A Dfibers.c262 fibers_join(fiber_t target) in fibers_join()
290 fibers_switch_helper(fiber_t target, int state) in fibers_switch_helper()
325 fibers_switch_to(fiber_t target, int state) in fibers_switch_to()
334 fiber_t target = fibers_queue_remove_by_id(&fibers_run_queue, target_id); in fibers_switch_to_by_id() local
342 fiber_t target = fibers_queue_pop(&fibers_run_queue, 0); in fibers_switch_top() local
349 fiber_t target = fibers_queue_pop(&fibers_run_queue, random_below(fibers_run_queue.count)); in fibers_switch_random() local
H A Dcondition.c51 fiber_t target = fibers_queue_pop(&cond->wait_queue, random_below(cond->wait_queue.count)); in fibers_condition_wakeup_some() local
110 fibers_condition_wakeup_identified(fibers_condition_t *cond, fiber_t target) in fibers_condition_wakeup_identified()
/xnu-12377.61.12/tests/vm/
H A Dvm_ranges.c167 mach_vm_address_t target = dst; in assert_allocate_eq() local
373 mach_vm_address_t target = range.min_address - ALLOCATION_SIZE; variable
384 mach_vm_address_t target = range.max_address - 100 * ALLOCATION_SIZE; variable
397 mach_vm_address_t target = range.max_address + 0x100000000; variable
431 mach_vm_address_t target = addr + ALLOCATION_SIZE; variable
448 mach_vm_address_t target = addr + ALLOCATION_SIZE; variable
466 mach_vm_address_t target = 0; variable
661 mach_vm_address_t const target = ti.max_address + PAGE_SIZE; variable
/xnu-12377.61.12/iokit/Tests/TestServices/
H A DTestIOUserClient2022Entitlements.cpp49 TestIOUserClient2022EntitlementsUserClient::extBasicMethod(OSObject * target, void * reference, IOE… in extBasicMethod()
55 TestIOUserClient2022EntitlementsUserClient::extPerSelectorCheck(OSObject * target, void * reference… in extPerSelectorCheck()
H A DTestIOServiceUserNotification.cpp92 void * target, in registerInterest()
118 IOExternalMethodDispatch * dispatch, OSObject * target, void * reference) in externalMethod()
/xnu-12377.61.12/pexpert/i386/
H A Dpe_interrupt.c42 void *target; member
77 void *target, in PE_install_interrupt_handler()
/xnu-12377.61.12/tools/lldbmacros/core/
H A Dkernelcore.py251 def __getattr__(self, name, target=None): argument
334 def GetGlobalVariable(name, target=None): argument
345 def PERCPU_BASE(self, cpu, target=None): argument
372 def GetLoadAddressForSymbol(self, name, target=None): argument
531 def GetUsecDivisor(self, target=None): argument
551 def zones(self, target=None): argument
575 def tasks(self, target=None): argument
/xnu-12377.61.12/osfmk/arm/
H A Dlocks_arm.c127 load_exclusive32(uint32_t *target, enum memory_order ord) in load_exclusive32()
141 store_exclusive32(uint32_t *target, uint32_t value, enum memory_order ord) in store_exclusive32()
155 atomic_exchange_begin32(uint32_t *target, uint32_t *previous, enum memory_order ord) in atomic_exchange_begin32()
168 atomic_exchange_complete32(uint32_t *target, uint32_t previous, uint32_t newval, enum memory_order … in atomic_exchange_complete32()
185 atomic_test_and_set32(uint32_t *target, uint32_t test_mask, uint32_t set_mask, enum memory_order or… in atomic_test_and_set32()
/xnu-12377.61.12/osfmk/i386/
H A Dlocks_i386_inlines.h39 #define ordered_load(target) os_atomic_load(target, compiler_acq_rel) argument
40 #define ordered_store_release(target, value) ({ \ argument
/xnu-12377.61.12/iokit/IOKit/
H A DIOInterruptAccountingPrivate.h138 #define IA_ADD_VALUE(target, value) \ argument
141 #define IA_ADD_VALUE(target, value) \ argument
/xnu-12377.61.12/bsd/vfs/
H A Dvfs_fslog.c61 fslog_extmod_msgtracer(__unused proc_t caller, __unused proc_t target) in fslog_extmod_msgtracer()
H A Dvfs_exclave_fs_helper.cpp43 OSDictionary *target = NULL, *filter = NULL; in vfs_exclave_fs_query_volume_group() local
/xnu-12377.61.12/osfmk/arm64/
H A Dmte.c103 mte_generate_default_exclude_mask(caddr_t target, size_t size) in mte_generate_default_exclude_mask()
132 mte_generate_and_store_tag(caddr_t target, size_t size) in mte_generate_and_store_tag()
141 mte_generate_and_store_tag(caddr_t target, size_t size, mte_exclude_mask_t mask) in mte_generate_and_store_tag()
H A Dpcb.c641 machine_thread_sme_state_dup(const arm_sme_saved_state_t *src_sme_ss, thread_t target) in machine_thread_sme_state_dup()
666 machine_thread_matrix_state_dup(thread_t target) in machine_thread_matrix_state_dup()
1407 arm_legacy_debug_state_t * target, in copy_legacy_debug_state()
1415 arm_debug_state32_t * target, in copy_debug_state32()
1423 arm_debug_state64_t * target, in copy_debug_state64()
/xnu-12377.61.12/libkern/kxld/
H A Dkxld_reloc.c767 kxld_addr_t target = 0; in kxld_relocator_process_sect_reloc() local
834 kxld_addr_t target = 0; in kxld_relocator_process_table_reloc() local
885 kxld_addr_t target = 0; in calculate_targets() local
1000 get_target_by_address_lookup(kxld_addr_t *target, kxld_addr_t addr, in get_target_by_address_lookup()
1252 uint32_t target = (uint32_t) _target; in generic_process_reloc() local
1350 uint64_t target = _target; in x86_64_process_reloc() local
1519 calculate_displacement_x86_64(uint64_t target, uint64_t adjustment, in calculate_displacement_x86_64()
1587 uint32_t target = (uint32_t) _target; in arm_process_reloc() local
1702 uint64_t target = _target; in arm64_process_reloc() local
/xnu-12377.61.12/security/
H A Dmac_mach.c187 mac_task_check_get_task_special_port(struct task *task, struct task *target, int which) in mac_task_check_get_task_special_port()
216 mac_task_check_set_task_special_port(struct task *task, struct task *target, int which, struct ipc_… in mac_task_check_set_task_special_port()
243 mac_task_check_set_task_exception_ports(struct task *task, struct task *target, unsigned int except… in mac_task_check_set_task_exception_ports()
279 mac_task_check_set_thread_exception_ports(struct task *task, struct task *target, unsigned int exce… in mac_task_check_set_thread_exception_ports()
/xnu-12377.61.12/EXTERNAL_HEADERS/mach-o/
H A Dfixup-chains.h111 uint64_t target : 43, member
132 uint64_t target : 32, // runtimeOffset member
157 …uint64_t target : 36, // 64GB max image size (DYLD_CHAINED_PTR_64 => vmAddr, DYLD_CHAINED… member
203 uint64_t target : 30, // basePointers[cacheLevel] + target member
219 uint32_t target : 26, // vmaddr, 64MB max image size member
236 uint32_t target : 30, // 1GB max dyld cache TEXT and DATA member
244 uint32_t target : 26, // 64MB max firmware TEXT and DATA member

12345