Searched refs:enqueue (Results 1 - 25 of 39) sorted by relevance

12

/macosx-10.10/IOHIDFamily-606.1.7/IOHIDFamily/
H A DIOHIDEventSystemQueue.cpp24 #undef enqueue macro
31 Boolean IOHIDEventSystemQueue::enqueue(void *data, UInt32 dataSize) function in class:IOHIDEventSystemQueue
37 result = super::enqueue(data, dataSize);
H A DIOHIDEventSystemQueue.h41 virtual Boolean enqueue(void *data, UInt32 dataSize);
H A DIOHIDEventQueue.h78 virtual Boolean enqueue( void * data, UInt32 dataSize );
H A DIOHIDEventServiceQueue.cpp29 #undef enqueue macro
142 // queue was empty prior to enqueue() or queue was emptied during enqueue()
H A DIOHIDEventQueue.cpp109 Boolean IOHIDEventQueue::enqueue( void * data, UInt32 dataSize ) function in class:IOHIDEventQueue
116 // if we are not started, then dont enqueue
119 ret = super::enqueue(data, dataSize);
/macosx-10.10/dtrace-147/test/tst/common/sched/
H A Dtst.enqueue.d27 #pragma ident "@(#)tst.enqueue.d 1.1 06/08/28 SMI"
32 sched:::enqueue
38 sched:::enqueue
44 sched:::enqueue
/macosx-10.10/ntp-92/ntpd/
H A Dntp_parser.y340 enqueue(cfgt.peers, my_node);
346 enqueue(cfgt.peers, my_node);
369 : option_list option { $$ = enqueue($1, $2); }
401 enqueue(cfgt.unpeers, my_node);
432 { enqueue(cfgt.vars, create_attr_ival($1, $2)); }
464 $$ = enqueue($1, $2);
512 : tos_option_list tos_option { $$ = enqueue($1, $2); }
558 enqueue(cfgt.filegen_opts,
564 : stats_list stat { $$ = enqueue($1, create_ival($2)); }
583 $$ = enqueue(
[all...]
H A Dntpsim.c138 enqueue(event_queue, event(0, BEEP));
139 enqueue(event_queue, event(simulation.sim_time + 1.0, TIMER));
197 enqueue(event_queue,
311 enqueue(event_queue, e);
315 * If not, re-enqueue the script onto the server script queue
404 enqueue(recv_queue, rbuf);
421 enqueue(event_queue, event(e->time + simulation.beep_delay, BEEP));
H A Dntp_data_structures.c115 queue *enqueue(queue *my_queue, void *my_node) function
177 enqueue(q1, dequeue(q2));
/macosx-10.10/IONetworkingFamily-101/
H A DIOPacketQueue.h36 // We do not want the enqueue/dequeue macros defined in queue.h.
39 #undef enqueue macro
46 to the tail of the queue (enqueue). A spinlock is used to synchronize
74 @discussion The capacity is only observed by the enqueue() method.
163 /*! @function enqueue
172 virtual bool enqueue(mbuf_t m);
174 /*! @function enqueue
182 virtual bool enqueue(IOPacketQueue * queue);
H A DIOOutputQueue.h33 // FIXME - We do not want the enqueue/dequeue macros defined in queue.h.
35 #undef enqueue macro
221 /*! @function enqueue
232 virtual UInt32 enqueue(mbuf_t m, void * param) = 0;
237 @result Returns the address of the enqueue() method.
H A DIOPacketQueue.cpp171 bool IOPacketQueue::enqueue(mbuf_t m) function in class:IOPacketQueue
176 bool IOPacketQueue::enqueue(IOPacketQueue * queue) function in class:IOPacketQueue
212 // Locked forms of prepend/enqueue/dequeue/dequeueAll methods.
H A DIOBasicOutputQueue.h194 /*! @function enqueue
207 virtual UInt32 enqueue(mbuf_t m, void * param);
/macosx-10.10/llvmCore-3425.0.34/lib/CodeGen/
H A DRegAllocBase.h57 /// live range splitting. They must also override enqueue/dequeue to provide an
82 /// enqueue - Add VirtReg to the priority queue of unassigned registers.
83 virtual void enqueue(LiveInterval *LI) = 0;
H A DRegAllocBase.cpp74 enqueue(&LIS->getInterval(Reg));
141 enqueue(SplitVirtReg);
/macosx-10.10/ntp-92/include/
H A Dntp_data_structures.h46 queue *enqueue(queue *my_queue, void *my_node);
/macosx-10.10/xnu-2782.1.97/iokit/IOKit/
H A DIODataQueue.h52 * @discussion The IODataQueue class is designed to allow kernel code to queue data to a user process. IODataQueue objects are designed to be used in a single producer / single consumer situation. As such, there are no locks on the data itself. Because the kernel enqueue and user-space dequeue methods follow a strict set of guidelines, no locks are necessary to maintain the integrity of the data struct.
124 * @function enqueue
131 virtual Boolean enqueue(void *data, UInt32 dataSize);
H A DIOSharedDataQueue.h47 * @discussion The IOSharedDataQueue class is designed to also allow a user process to queue data to kernel code. IOSharedDataQueue objects are designed to be used in a single producer / single consumer situation. As such, there are no locks on the data itself. Because the kernel enqueue and user-space dequeue methods follow a strict set of guidelines, no locks are necessary to maintain the integrity of the data struct.
142 * @function enqueue
149 virtual Boolean enqueue(void *data, UInt32 dataSize);
/macosx-10.10/xnu-2782.1.97/iokit/Kernel/
H A DIODataQueue.cpp40 #ifdef enqueue
41 #undef enqueue macro
149 Boolean IODataQueue::enqueue(void * data, UInt32 dataSize) function in class:IODataQueue
227 if ( ( head == tail ) /* queue was empty prior to enqueue() */
228 || ( dataQueue->head == tail ) ) /* queue was emptied during enqueue() */
H A DIOSharedDataQueue.cpp34 #ifdef enqueue
35 #undef enqueue macro
183 Boolean IOSharedDataQueue::enqueue(void * data, UInt32 dataSize) function in class:IOSharedDataQueue
261 if ( ( head == tail ) /* queue was empty prior to enqueue() */
262 || ( dataQueue->head == tail ) ) /* queue was emptied during enqueue() */
/macosx-10.10/JavaScriptCore-7600.1.17/dfg/
H A DDFGWorklist.h54 void enqueue(PassRefPtr<Plan>);
H A DDFGDriver.cpp100 worklist->enqueue(plan);
/macosx-10.10/xnu-2782.1.97/bsd/net/altq/
H A Daltq_subr.c118 altq_enq_func enqueue, altq_deq_func dequeue,
126 VERIFY(enqueue != NULL);
132 altq->altq_enqueue = enqueue;
117 altq_attach(struct ifaltq *altq, u_int32_t type, void *discipline, altq_enq_func enqueue, altq_deq_func dequeue, altq_deq_sc_func dequeue_sc, altq_req_func request) argument
/macosx-10.10/ncurses-44/ncurses/ncurses/tinfo/
H A Dcomp_parse.c66 enqueue(ENTRY * ep) function
150 enqueue(&thisentry);
/macosx-10.10/vim-55/runtime/syntax/
H A Dmplayerconf.vim32 \ enqueue fixed-vo framedrop h identify input

Completed in 281 milliseconds

12