HomeSort by: relevance | last modified time | path
    Searched defs:workQueue (Results 1 - 5 of 5) sorted by relevancy

  /xsrc/external/mit/xfs/dist/difs/
difsutils.c 353 WorkQueuePtr workQueue;
354 static WorkQueuePtr *workQueueLast = &workQueue;
371 for (q = workQueue; q; q = n) {
378 workQueue = n;
388 workQueueLast = &workQueue;
  /xsrc/external/mit/xorg-server/dist/dix/
dixutils.c 507 WorkQueuePtr workQueue;
508 static WorkQueuePtr *workQueueLast = &workQueue;
515 p = &workQueue;
528 p = &workQueue;
553 p = &workQueue;
  /xsrc/external/mit/xorg-server.old/dist/dix/
dixutils.c 509 WorkQueuePtr workQueue;
510 static WorkQueuePtr *workQueueLast = &workQueue;
517 p = &workQueue;
545 p = &workQueue;
  /xsrc/external/mit/libXt/dist/include/X11/
InitialI.h 157 WorkProcRec *workQueue;
  /xsrc/external/mit/xfontsel/dist/
xfontsel.c 452 static WorkPiece workQueue = NULL;
458 * Adds a WorkPiece to the workQueue in FIFO order by priority.
462 * If the workQueue was previously empty, then makes sure that
473 if (workQueue == NULL) {
475 workQueue = piece;
478 if (workQueue->priority > priority) {
479 piece->next = workQueue;
480 workQueue = piece;
484 for (n = workQueue; n->next && n->next->priority <= priority;)
495 WorkPiece piece = workQueue;
    [all...]

Completed in 10 milliseconds