Home | History | Annotate | Download | only in v8-v6

Lines Matching refs:TO

13 //       contributors may be used to endorse or promote products derived
18 // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
22 // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
89 * A scheduler can be used to schedule a set of tasks based on their relative
115 * Add an idle task to this scheduler.
118 * @param {Packet} queue the queue of work to be processed by the task
119 * @param {int} count the number of times to schedule the task
126 * Add a work task to this scheduler.
129 * @param {Packet} queue the queue of work to be processed by the task
136 * Add a handler task to this scheduler.
139 * @param {Packet} queue the queue of work to be processed by the task
146 * Add a handler task to this scheduler.
149 * @param {Packet} queue the queue of work to be processed by the task
159 * @param {Packet} queue the queue of work to be processed by the task
160 * @param {Task} task the task to add
168 * Add the specified task to this scheduler.
171 * @param {Packet} queue the queue of work to be processed by the task
172 * @param {Task} task the task to add
196 * Release a task that is currently blocked and return the next block to run.
197 * @param {int} id the id of the task to suspend
212 * to run. The blocked task will not be made runnable until it is explicitly
213 * released, even if new work is added to it.
223 * to run. If new work is added to the suspended task it will be made runnable.
231 * Add the specified packet to the end of the worklist used by the task
234 * @param {Packet} packet the packet to add
251 * @param {Packet} queue the queue of packages to be processed by the task
274 * The task has packets left to process.
317 * Runs this task, if it is ready to be run, and returns the next task to run.
336 * Adds a packet to the worklist of this block's task, marks this as runnable if
337 * necessary, and returns the next runnable object to run (the one
386 * A task that suspends itself after each time it has been run to simulate
415 * @param {int} v1 a seed used to specify how work packets are manipulated
416 * @param {int} v2 another seed used to specify how work packets are manipulated
519 * Add this packet to the end of a worklist, and return the worklist.
520 * @param {Packet} queue the worklist to add this packet to