Searched refs:target (Results 26 - 50 of 84) sorted by relevance

1234

/darwin-on-arm/xnu/tools/tests/libMicro/
H A Dpoll.c50 static int target = 0; variable
148 target = MIN(optr + optw, optn);
153 target = MAX(optr, optw);
195 if (poll(ts->ts_pfds, optn, 0) != target) {
/darwin-on-arm/xnu/osfmk/kern/
H A Dthread_act.c593 register thread_t target)
598 if (target == THREAD_NULL || target == self)
601 thread_mtx_lock(target);
603 if (target->active) {
604 thread_hold(target);
606 thread_mtx_unlock(target);
608 if (thread_stop(target)) {
609 thread_mtx_lock(target);
610 result = machine_thread_dup(self, target);
592 thread_dup( register thread_t target) argument
[all...]
H A Dstack.c364 unsigned int target; local
371 target = stack_free_target + (STACK_CACHE_SIZE * processor_count);
372 target += (stack_free_delta >= 0)? stack_free_delta: -stack_free_delta;
374 while (stack_free_count > target) {
403 target = stack_free_target + (STACK_CACHE_SIZE * processor_count);
404 target += (stack_free_delta >= 0)? stack_free_delta: -stack_free_delta;
417 * Computes a new target free list count
/darwin-on-arm/xnu/iokit/Kernel/
H A DIOInterruptController.cpp55 void *target,
142 vector->target,
171 vector->target = vector->sharedController;
192 error = vector->sharedController->registerInterrupt(nub, source, target,
202 vector->target = target;
252 vector->target = 0;
474 void *target,
524 vector->target = target;
54 registerInterrupt(IOService *nub, int source, void *target, IOInterruptHandler handler, void *refCon) argument
472 registerInterrupt(IOService *nub, int source, void *target, IOInterruptHandler handler, void *refCon) argument
[all...]
H A DIOServicePMPrivate.h78 void * target,
86 void * target,
94 void * target,
102 void * target,
107 void * target; member in struct:IOPMActions
488 void * target, void * object, void * arg1, void * arg2, void * arg3 );
525 typedef void (*IOPMCompletionAction)(void * target, void * param, IOReturn status);
532 IOService * fTarget; // request target
593 void * target,
597 fCompletionTarget = target;
591 installCompletionAction( IOPMCompletionAction action, void * target, void * param ) argument
[all...]
H A DIODMACommand.cpp319 IODMACommand *target,
329 IODMACommandInternal * state = target->reserved;
331 if (target->fNumAddressBits && (target->fNumAddressBits < 64) && (state->fLocalMapperPageAlloc || !target->fMapper))
332 maxPhys = (1ULL << target->fNumAddressBits);
390 if (!lastPage || SHOULD_COPY_DIR(op, target->fMDSummary.fDirection))
395 if (SHOULD_COPY_DIR(op, target->fMDSummary.fDirection))
401 if ((kMapped == MAPTYPE(target->fMappingOptions))
402 && target
317 segmentOp( void *reference, IODMACommand *target, Segment64 segment, void *segments, UInt32 segmentIndex) argument
897 transferSegment(void *reference, IODMACommand *target, Segment64 segment, void *segments, UInt32 segmentIndex) argument
1212 clientOutputSegment( void *reference, IODMACommand *target, Segment64 segment, void *vSegList, UInt32 outSegIndex) argument
[all...]
H A DRootDomainUserClient.h81 OSObject * target,
H A DIOServicePrivate.h94 void * target; member in class:_IOServiceNotifier
117 void * target; member in class:_IOServiceInterestNotifier
/darwin-on-arm/xnu/iokit/IOKit/pwr_mgt/
H A DRootDomain.h126 (OSObject *target, const OSSymbol *type,
220 @param target The target of the callback, usually 'this'
230 OSObject *target,
241 @param target The target of the callback, usually 'this'
252 OSObject *target,
259 void * target, void * ref = 0 );
472 static IOReturn sysPowerDownHandler( void * target, void * refCon,
476 static IOReturn displayWranglerNotification( void * target, voi
[all...]
/darwin-on-arm/xnu/
H A Dxnu-build39 target=""
160 if [ "$buildtool" == "xcodebuild" -a "$target" != "" ]; then
161 build_string="$build_string -target \"$target\""
162 elif [ "$target" != "" ]; then
163 action="$target"
195 # Panther cctools unlinks -o target, so don't use /dev/null
/darwin-on-arm/xnu/iokit/Drivers/KernelBuiltIn/ARM/AppleARMPlatform/
H A DIOCPU.h90 virtual void signalCPU(IOCPU * target);
135 virtual IOReturn registerInterrupt(IOService * nub, int source, void *target, IOInterruptHandler handler, void *refCon);
/darwin-on-arm/xnu/iokit/IOKit/
H A DIOCPU.h91 virtual void signalCPU(IOCPU *target);
137 void *target,
H A DIOWorkLoop.h65 @param target
67 was specified, this parameter is implicitly the first parameter in the target
74 typedef IOReturn (*Action)(OSObject *target,
290 virtual IOReturn runAction(Action action, OSObject *target,
H A DIOService.h145 typedef void (*IOInterruptAction)( OSObject * target, void * refCon,
149 @param target Reference supplied when the notification was registered.
153 typedef bool (*IOServiceNotificationHandler)( void * target, void * refCon,
156 typedef bool (*IOServiceMatchingNotificationHandler)( void * target, void * refCon,
161 @param target Reference supplied when the notification was registered.
168 typedef IOReturn (*IOServiceInterestHandler)( void * target, void * refCon,
669 @param target An instance reference for the callback's use.
677 void * target, void * ref = 0,
692 @param target An instance reference for the callback's use.
700 void * target, voi
[all...]
/darwin-on-arm/xnu/osfmk/i386/
H A Dmisc_protos.h164 copy_debug_state32(x86_debug_state32_t *src, x86_debug_state32_t *target, boolean_t all);
167 copy_debug_state64(x86_debug_state64_t *src, x86_debug_state64_t *target, boolean_t all);
H A Dpcb.c540 * And if we're target, re-arm the no-fpu trap.
2126 x86_debug_state32_t *target,
2130 target->dr4 = src->dr4;
2131 target->dr5 = src->dr5;
2134 target->dr0 = src->dr0;
2135 target->dr1 = src->dr1;
2136 target->dr2 = src->dr2;
2137 target->dr3 = src->dr3;
2138 target->dr6 = src->dr6;
2139 target
2124 copy_debug_state32( x86_debug_state32_t *src, x86_debug_state32_t *target, boolean_t all) argument
2149 copy_debug_state64( x86_debug_state64_t *src, x86_debug_state64_t *target, boolean_t all) argument
[all...]
/darwin-on-arm/xnu/osfmk/mach/
H A Dmach_vm.defs87 * of the target task, either at the specified address,
94 target : vm_task_entry_t;
105 target : vm_task_entry_t;
117 * address space of the target virtual memory map.
121 target : vm_task_entry_t;
131 target : vm_task_entry_t;
141 * space of the target virtual memory map. The current
176 * of the virtual address space of the target address space.
193 * virtual address space of the target task. [The
210 * ranges within target addres
[all...]
/darwin-on-arm/xnu/osfmk/arm/
H A Dpcb.c390 kern_return_t machine_thread_dup(thread_t self, thread_t target) argument
395 bcopy(self->machine.uss, target->machine.uss, sizeof(arm_saved_state_t));
401 bcopy(&self->machine.vfp_regs, &target->machine.vfp_regs, sizeof(arm_vfp_state_t));
402 target->machine.cthread_self = self->machine.cthread_self;
H A Dmachine_routines.c279 void ml_install_interrupt_handler(void *nub, int source, void *target, argument
290 datap->target = target;
/darwin-on-arm/xnu/bsd/vfs/
H A Dvfs_fslog.c475 * and target are appropriately locked.
483 fslog_extmod_msgtracer(proc_t caller, proc_t target) argument
485 if ((caller != PROC_NULL) && (target != PROC_NULL)) {
505 strlcpy(t_name, target->p_comm, sizeof(t_name));
506 uuid_unparse_upper(target->p_uuid, uuidstr);
519 proc_pid(target));
/darwin-on-arm/xnu/bsd/vm/
H A Dvm_unix.c171 printf("%s (map: %p) triggered DYLD shared region unnest for map: %p, region 0x%qx->0x%qx. While not abnormal for debuggers, this increases system memory footprint until the target exits.\n", current_proc()->p_comm, get_task_map(current_proc()->task), m, (uint64_t)s, (uint64_t)e);
454 * get the target process's task port. This is only
458 * - The target process's real, effective, and saved uids
460 * - The target process's group set is a subset of the
462 * - The target process hasn't switched credentials.
468 task_for_pid_posix_check(proc_t target) argument
475 if (target->p_stat == SZOMB) {
487 if (target == current_proc())
498 targetcred = kauth_cred_proc_ref(target);
501 /* Do target'
731 task_t target = NULL; local
817 task_t target = NULL; local
[all...]
/darwin-on-arm/xnu/libkern/kxld/
H A Dkxld_reloc.h57 kxld_addr_t target, kxld_addr_t pair_target, boolean_t swap);
78 u_int target; member in struct:kxld_reloc
/darwin-on-arm/xnu/iokit/Examples/drvGenericInterruptController/
H A DGenericInterruptController.cpp152 vector->handler(vector->target, vector->refCon,
/darwin-on-arm/xnu/bsd/netkey/
H A Dkeysock.c208 /* so can be NULL if target != KEY_SENDUP_ONE */
210 key_sendup_mbuf(so, m, target)
213 int target;
223 if (so == NULL && target == KEY_SENDUP_ONE)
272 /* the exact target will be processed later */
279 switch (target) {
291 PFKEY_STAT_INCREMENT(pfkeystat.in_msgtarget[target]);
314 * this is important when target == KEY_SENDUP_ALL.
/darwin-on-arm/xnu/bsd/kern/
H A Dkern_symfile.c202 dev_t target = 0; local
349 if (!target)
351 target = getphysreq.dev;
353 else if (target != getphysreq.dev)
366 p1 = &target;
431 *image_device_result = target;

Completed in 111 milliseconds

1234