Home | History | Annotate | Download | only in libril

Lines Matching refs:front

54      * Front of the queue.
56 T *front;
68 * Add a request to the front of the queue.
98 front = NULL;
109 temp = this->front;
110 if(NULL != this->front->p_next) {
111 this->front = this->front->p_next;
113 this->front = NULL;
125 if(NULL == this->front) {
126 this->front = request;
129 request->p_next = this->front;
130 this->front = request;
143 for(T **ppCur = &(this->front); *ppCur != NULL; ppCur = &((*ppCur)->p_next)) {
162 if(this->front == NULL) {