Home | History | Annotate | Download | only in Data_link

Lines Matching refs:aQueues

88 	SM_EVENT_QUEUES_EMPTY,	/* Mgmt-aQueues are now both empty. */
89 SM_EVENT_QUEUES_NOT_EMPTY /* At least one of the Mgmt-aQueues is now not empty. */
98 SM_STATE_OPEN_MGMT, /* All Tx permitted and Mgmt aQueues are currently active (date disabled). */
99 SM_STATE_OPEN_DATA /* All Tx permitted and Data aQueues are currently active (mgmt disabled). */
111 /* TI_TRUE if both aQueues are empty. */
112 #define ARE_ALL_MGMT_QUEUES_EMPTY(aQueues) ( (que_Size(aQueues[QUEUE_TYPE_MGMT] ) == 0) && \
113 (que_Size(aQueues[QUEUE_TYPE_EAPOL]) == 0) )
135 TI_BOOL bMgmtPortEnable;/* Port open for mgmt-aQueues or not. */
140 /* Mgmt aQueues */
141 TI_HANDLE aQueues[NUM_OF_MGMT_QUEUES]; /* The mgmt-aQueues handles. */
226 pTxMgmtQ->aQueues[uQueId] = que_Create (pTxMgmtQ->hOs,
232 if (pTxMgmtQ->aQueues[uQueId] == NULL)
279 if (que_Destroy(pTxMgmtQ->aQueues[uQueId]) != TI_OK)
315 pPktCtrlBlk = (TTxCtrlBlk *)que_Dequeue(pTxMgmtQ->aQueues[uQueId]);
365 eStatus = que_Enqueue (pTxMgmtQ->aQueues[uQueId], (TI_HANDLE)pPktCtrlBlk);
368 uQueSize = que_Size (pTxMgmtQ->aQueues[uQueId]);
635 if ( ARE_ALL_MGMT_QUEUES_EMPTY(pTxMgmtQ->aQueues) )
752 if ( !ARE_ALL_MGMT_QUEUES_EMPTY(pTxMgmtQ->aQueues) )
757 if ( ARE_ALL_MGMT_QUEUES_EMPTY(pTxMgmtQ->aQueues) )
797 pPktCtrlBlk = (TTxCtrlBlk *) que_Dequeue (pTxMgmtQ->aQueues[uQueId]);
813 que_Requeue (pTxMgmtQ->aQueues[uQueId], (TI_HANDLE)pPktCtrlBlk);
932 que_Print (pTxMgmtQ->aQueues[uQueId]);