Searched refs:queues (Results 1 - 24 of 24) sorted by relevance

/macosx-10.9.5/tcl-102/tcl_ext/tcllib/tcllib/modules/struct/
H A Dprioqueue.tcl19 # The queues array holds all of the queues you've made
20 variable queues
22 # counter is used to give a unique name for unnamed queues
79 variable queues
124 set queues($name) [list ]
179 variable queues
180 set queues($name) [list]
196 variable queues
198 unset queues(
[all...]
H A Dqueue_oo.tcl108 variable queues
H A Dqueue_tcl.tcl14 # counter is used to give a unique name for unnamed queues
141 # The arrays hold all of the queues which were made.
254 variable queues
/macosx-10.9.5/postfix-252/postfix/src/postsuper/
H A Dpostsuper.c650 const char **queues)
656 found += operator(queues, STR(buf));
727 static void super(const char **queues, int action) argument
748 while ((queue_name = *queues++) != 0) {
771 * Sanity check. Some queues just cannot be recursive.
1069 const char **queues; local
1289 * explicitly specified (or default) queues.
1300 queues = (const char **) argv + optind;
1302 queues = (const char **) default_hold_queues;
1304 queues
648 operate_stream(VSTREAM *fp, int (*operator) (const char **, const char *), const char **queues) argument
[all...]
/macosx-10.9.5/mDNSResponder-522.92.1/Clients/PrinterSetupWizard/
H A DUtilTypes.h131 // queues. These are ordered according to preference.
133 Queues queues; member in struct:PrinterSetupWizard::Service
235 return queues.front();
241 while ( queues.size() > 0 )
243 Queue * q = queues.front();
244 queues.pop_front();
H A DPrinterSetupWizardSheet.cpp352 q = service->queues.front();
418 q = service->queues.front();
559 // What do we do here for multiple queues?
560 q = service->queues.front();
1167 service->queues.push_back( q );
1255 service->queues.push_back( q );
1257 if ( service->queues.size() == service->qtotal )
1267 // sort the queues
1270 service->queues.sort( OrderQueueFunc );
1615 // clean out any queues tha
[all...]
H A DThirdPage.cpp250 Queue * q = service->queues.front();
266 Queue * q = service->queues.front();
/macosx-10.9.5/xnu-2422.115.4/bsd/net/
H A Dpf_ruleset.c189 TAILQ_INIT(&ruleset->rules[i].queues[0]);
190 TAILQ_INIT(&ruleset->rules[i].queues[1]);
191 ruleset->rules[i].active.ptr = &ruleset->rules[i].queues[0];
192 ruleset->rules[i].inactive.ptr = &ruleset->rules[i].queues[1];
H A Dpfvar.h1189 struct pf_rulequeue queues[2]; member in struct:pf_ruleset::__anon14633
/macosx-10.9.5/libdispatch-339.92.1/private/
H A Dintrospection_private.h186 * Item is a barrier on the queue (all items on serial queues are barriers).
235 * Item is a barrier on the queue (all items on serial queues are barriers).
555 * Retrieve introspection information about all dispatch queues in the process,
559 * Retrieving queue information and iterating through the list of all queues
569 * Number of queues to introspect.
571 * @param queues
572 * Array to fill with queue information. If less than 'count' queues are left
578 * retrieve information about the next batch of queues. May be NULL if there
579 * are no more queues to iterate over.
583 dispatch_introspection_queue_t queues);
[all...]
/macosx-10.9.5/xnu-2422.115.4/osfmk/kern/
H A Dsched.h191 queue_head_t queues[NRQS]; /* one for each priority */ member in struct:run_queue
H A Dsched_proto.c304 queue = rq->queues + rq->highq;
439 if (queue_empty(rq->queues + thread->sched_pri)) {
H A Dwait_queue.c63 * Primitives for manipulating wait queues: either global
138 uint32_t hsize, queues; local
143 queues = thread_max / 11;
144 hsize = P2ROUNDUP(queues * sizeof(struct wait_queue), PAGE_SIZE);
185 panic("kernel_memory_allocate() failed to allocate wait queues, error: %d, whsize: 0x%x", kret, whsize);
199 "wait queues");
585 * the wait queue than there are wait queues associated with
1004 * member wait queues and all the sets it may be a member of.
1028 /* remove the wait queues that are members of our set */
1061 * member wait queues an
[all...]
H A Dsched_prim.c2137 queue_t queue = rq->queues + rq->highq;
2897 queue_init(&rq->queues[i]);
2996 queue_t queue = rq->queues + rq->highq;
3034 queue_t queue = rq->queues + thread->sched_pri;
3081 if (queue_empty(rq->queues + thread->sched_pri)) {
3933 queue_t queue = rq->queues + rq->highq;
4055 * This may cause the thread to change queues.
4104 q = &rq->queues[thread->sched_pri];
4174 * run queues because the caller locked the thread. Otherwise
4182 * The processor run queues ar
[all...]
/macosx-10.9.5/IOHIDFamily-503.215.2/IOHIDLib/
H A DIOHIDDeviceClass.cpp1578 IOHIDQueueClass ** queues = NULL; local
1580 queues = (IOHIDQueueClass **)malloc(sizeof(IOHIDQueueClass *) * queueCount);
1582 CFSetGetValues(fQueues, (const void **)queues);
1584 for (int i=0; queues && i<queueCount; i++)
1586 ret = queues[i]->start();
1589 if (queues)
1590 free(queues);
1604 IOHIDQueueClass ** queues = NULL; local
1606 queues = (IOHIDQueueClass **)malloc(sizeof(IOHIDQueueClass *) * queueCount);
1608 CFSetGetValues(fQueues, (const void **)queues);
[all...]
/macosx-10.9.5/libdispatch-339.92.1/src/
H A Dintrospection.c328 dispatch_introspection_queue_t queues)
334 queues->queue = NULL;
337 *queues++ = dispatch_introspection_queue_get_info(next);
327 dispatch_introspection_get_queues(dispatch_queue_t start, size_t count, dispatch_introspection_queue_t queues) argument
/macosx-10.9.5/libdispatch-339.92.1/
H A Dconfigure.ac199 # in support for pthread work queues.
202 [AC_DEFINE(HAVE_PTHREAD_WORKQUEUES, 1, [Define if pthread work queues are present])]
/macosx-10.9.5/postfix-252/postfix/
H A Dpostfix-install110 # The final destination directory for Postfix queues.
332 queues."
/macosx-10.9.5/xnu-2422.115.4/osfmk/pmc/
H A Dpmc.c194 static lck_mtx_t cpu_monitor_queue_mutex; /* protects per-cpu queues at initialisation time */
198 /* Reservation tracking queues lock */
202 * Tracking queues
216 * Reservation queues
278 * init_pmc_queues allocates and initializes the tracking queues for
321 /* build our tracking queues */
397 queue_head_t **queues; local
404 queues = (queue_head_t**)kalloc(sizeof(queue_head_t*) * max_cpus);
405 assert(queues);
410 queues[
[all...]
/macosx-10.9.5/xnu-2422.115.4/tools/lldbmacros/
H A Dprocess.py880 runq_queue_count = sizeof(runq.queues)/sizeof(runq.queues[0])
882 runq_queue_head = addressof(runq.queues[runq_queue_i])
/macosx-10.9.5/tcl-102/tcl_ext/tklib/tklib/modules/diagrams/include/
H A Dclassinstance_api.inc185 of the queues provided by package
404 object conforming to the API of the queues
/macosx-10.9.5/postfix-252/postfix/mantools/
H A Dpostlink1042 s/\b"*maildrop"* *queues*\b/<a href="QSHAPE_README.html#maildrop_queue">$&<\/a>/;
1046 s/\b"*incoming"* *queues*\b/<a href="QSHAPE_README.html#incoming_queue">$&<\/a>/;
1047 s/<b> *incoming *<\/b> *queues*\b/<a href="QSHAPE_README.html#incoming_queue">$&<\/a>/;
1048 s/\b"*active"* *queues*\b/<a href="QSHAPE_README.html#active_queue">$&<\/a>/;
1049 s/\b"*deferred"* *queues*\b/<a href="QSHAPE_README.html#deferred_queue">$&<\/a>/;
1050 s/\b"*hold"* *queues*\b/<a href="QSHAPE_README.html#hold_queue">$&<\/a>/;
/macosx-10.9.5/libauto-185.5/
H A Dauto_zone.cpp715 static void * volatile queues[__PTK_FRAMEWORK_GC_KEY9-__PTK_FRAMEWORK_GC_KEY0+1]; variable
1403 queues[azone->thread_key()-__PTK_FRAMEWORK_GC_KEY0] = azone->_collection_queue;
/macosx-10.9.5/CPANInternal-140/SOAP-Lite-0.69/lib/SOAP/
H A DTransport.pm582 This accessor method has the same interface as other similar classes but is worth noting for the internal actions that take place. When the endpoint is set or changed, the method creates a queue-manager object (from the MQSeries::QueueManager class) and references this object when creating queues for replies and requests using the methods described earlier. The URI structure used with these classes (strings beginning with the characters mq://user@host:port) contains the information needed for these operations.

Completed in 261 milliseconds