Searched refs:old_queue (Results 1 - 5 of 5) sorted by relevance

/xnu-2782.1.97/osfmk/kern/
H A Dcall_entry.h77 queue_t old_queue = entry->queue; local
79 if (old_queue != NULL)
86 return (old_queue);
93 queue_t old_queue = entry->queue; local
95 if (old_queue != NULL) {
100 return (old_queue);
109 queue_t old_queue = entry->queue; local
112 if (old_queue != queue || entry->deadline < deadline) {
113 if (old_queue == NULL) {
115 } else if (old_queue !
[all...]
H A Dtimer_call.c145 mpqueue_head_t ** old_queue,
260 mpqueue_head_t *old_queue = MPQUEUE(TCE(entry)->queue); local
270 if (!hw_lock_held((hw_lock_t)&old_queue->lock_data))
272 "queue %p is not locked\n", old_queue);
275 old_queue->count--;
277 return (old_queue);
286 mpqueue_head_t *old_queue = MPQUEUE(TCE(entry)->queue); local
295 if (old_queue != NULL && old_queue != queue)
297 "old_queue
321 mpqueue_head_t *old_queue = MPQUEUE(TCE(entry)->queue); local
335 mpqueue_head_t *old_queue = MPQUEUE(TCE(entry)->queue); local
373 mpqueue_head_t *old_queue = MPQUEUE(TCE(entry)->queue); local
400 mpqueue_head_t *old_queue; local
460 mpqueue_head_t *old_queue; local
555 mpqueue_head_t *old_queue; local
679 mpqueue_head_t *old_queue; local
1098 timer_longterm_enqueue_unlocked(timer_call_t call, uint64_t now, uint64_t deadline, mpqueue_head_t **old_queue, uint64_t soft_deadline, uint64_t ttd, timer_call_param_t param1, uint32_t callout_flags) argument
[all...]
H A Dthread_call.c433 queue_head_t *old_queue; local
435 old_queue = call_entry_enqueue_tail(CE(call), &group->pending_queue);
437 if (old_queue == NULL) {
445 return (old_queue != NULL);
466 queue_head_t *old_queue; local
468 old_queue = call_entry_enqueue_deadline(CE(call), &group->delayed_queue, deadline);
470 if (old_queue == &group->pending_queue)
472 else if (old_queue == NULL)
475 return (old_queue != NULL);
492 queue_head_t *old_queue; local
[all...]
/xnu-2782.1.97/osfmk/vm/
H A Dvm_object.c6967 purgeable_q_t old_queue; local
6980 old_queue = vm_purgeable_object_remove(object);
6981 assert(old_queue);
6990 if (old_queue != queue ||
6998 vm_purgeable_token_delete_last(old_queue);
7047 purgeable_q_t old_queue; local
7053 old_queue = vm_purgeable_object_remove(object);
7054 assert(old_queue);
7057 vm_purgeable_token_delete_first(old_queue);
H A Dvm_resident.c5620 purgeable_q_t old_queue = vm_purgeable_object_remove(m->object); local
5621 assert(old_queue);
5623 vm_purgeable_token_delete_first(old_queue);

Completed in 73 milliseconds