Searched refs:waiting (Results 1 - 7 of 7) sorted by relevance

/darwin-on-arm/xnu/iokit/Kernel/
H A DIOConditionLock.cpp55 waiting = false;
108 if (waiting) {
109 waiting = false;
153 waiting = true;
H A DIOService.cpp983 ArbitrationLockQueueElement * waiting; local
1028 // before placing this new thread on the waiting queue, we look for
1033 // want is waiting for another object to be unlocked
1036 waiting,
1040 if( waiting->thread == active->thread ) {
1041 assert( false == waiting->aborted );
1047 if( found ) { // yes, active thread waiting for another object
1051 if( false == waiting->required )
1052 victim = waiting;
1062 if( active->service == waiting
[all...]
/darwin-on-arm/xnu/iokit/IOKit/
H A DIOConditionLock.h52 volatile bool waiting; member in class:IOConditionLock
59 virtual bool tryLock(); // acquire lock, no waiting
/darwin-on-arm/xnu/osfmk/kern/
H A Dzalloc.h116 /* boolean_t */ waiting :1, /* is thread waiting for expansion? */ member in struct:zone
H A Dzalloc.c1168 z->waiting = FALSE;
1728 zone->waiting = TRUE;
1733 * collected, set the waiting bit and try to
1737 zone->waiting = TRUE;
1841 if (zone->waiting) {
1842 zone->waiting = FALSE;
2713 if (z->waiting == TRUE) {
2714 /* z->waiting checked without lock held, rechecked below after locking */
2735 if (z->waiting) {
2736 z->waiting
[all...]
/darwin-on-arm/xnu/osfmk/vm/
H A Dvm_object.c312 boolean_t waiting; /* someone waiting for member in struct:vm_object_hash_entry
430 entry->waiting = FALSE;
1770 /* kick off anyone waiting on terminating */
2118 * Purpose: Wake up anyone waiting for termination of a pager.
2126 boolean_t waiting = FALSE; local
2130 * If anyone was waiting for the memory_object_terminate
2136 waiting = entry->waiting;
2140 if (waiting)
[all...]
/darwin-on-arm/xnu/bsd/kern/
H A Dkern_descrip.c327 int waiting; local
329 waiting = (p->p_fd->fd_ofileflags[fd] & UF_RESVWAIT);
332 if ( waiting == UF_RESVWAIT) {

Completed in 123 milliseconds