Searched defs:aQueue (Results 1 - 4 of 4) sorted by relevance

/vbox/src/libs/xpcom18a4/xpcom/threads/
H A DnsPIEventQueueChain.h57 * @param aQueue the queue. must not be null.
60 NS_IMETHOD AppendQueue(nsIEventQueue *aQueue) = 0; member in class:nsPIEventQueueChain
70 * @param *aQueue the youngest queue. aQueue must not be null.
73 NS_IMETHOD GetYoungest(nsIEventQueue **aQueue) = 0; member in class:nsPIEventQueueChain
79 * @param *aQueue the youngest such queue. aQueue must not be null.
80 * *aQueue will be returned null, if no such queue is found.
81 * @return error indication -- can be NS_OK even if *aQueue is 0
83 NS_IMETHOD GetYoungestActive(nsIEventQueue **aQueue) member in class:nsPIEventQueueChain
85 NS_IMETHOD SetYounger(nsPIEventQueueChain *aQueue) = 0; member in class:nsPIEventQueueChain
86 NS_IMETHOD GetYounger(nsIEventQueue **aQueue) = 0; member in class:nsPIEventQueueChain
88 NS_IMETHOD SetElder(nsPIEventQueueChain *aQueue) = 0; member in class:nsPIEventQueueChain
89 NS_IMETHOD GetElder(nsIEventQueue **aQueue) = 0; member in class:nsPIEventQueueChain
[all...]
H A DnsEventQueueService.cpp82 // 'aQueue' should be the eldest queue.
167 nsIEventQueue **aQueue)
175 *aQueue = queue;
176 NS_IF_ADDREF(*aQueue);
318 nsEventQueueServiceImpl::PopThreadEventQueue(nsIEventQueue *aQueue) argument
329 if (aQueue == eldestQueue)
341 aQueue->GetPLEventQueue(&equeue);
346 aQueue->StopAcceptingEvents();
347 aQueue->ProcessPendingEvents(); // make sure we don't orphan any events
413 nsEventQueueServiceImpl::GetSpecialEventQueue(PRInt32 aQueue, argument
165 MakeNewQueue(PRThread* thread, PRBool aNative, nsIEventQueue **aQueue) argument
[all...]
H A DnsEventQueue.cpp184 nsEventQueueImpl::InitFromPLQueue(PLEventQueue* aQueue) argument
186 mEventQueue = aQueue;
501 nsEventQueueImpl::AppendQueue(nsIEventQueue *aQueue) argument
505 nsCOMPtr<nsPIEventQueueChain> queueChain(do_QueryInterface(aQueue));
507 if (!aQueue)
511 NS_ASSERTION(aQueue->mYoungerQueue == NULL && aQueue->mElderQueue == NULL,
572 nsEventQueueImpl::GetYoungest(nsIEventQueue **aQueue) argument
575 return mYoungerQueue->GetYoungest(aQueue);
579 *aQueue
584 GetYoungestActive(nsIEventQueue **aQueue) argument
600 SetYounger(nsPIEventQueueChain *aQueue) argument
607 SetElder(nsPIEventQueueChain *aQueue) argument
614 GetYounger(nsIEventQueue **aQueue) argument
624 GetElder(nsIEventQueue **aQueue) argument
[all...]
/vbox/src/libs/xpcom18a4/xpcom/ds/
H A DnsDeque.cpp431 * @param aQueue is the deque object to be iterated
434 nsDequeIterator::nsDequeIterator(const nsDeque& aQueue, int aIndex) argument
436 mDeque(aQueue)

Completed in 57 milliseconds