list_ptr 101 dev/raidframe/rf_cvscan.c rf_PriorityInsert(RF_DiskQueueData_t **list_ptr, RF_DiskQueueData_t *req) list_ptr 109 dev/raidframe/rf_cvscan.c for (; (*list_ptr) != (RF_DiskQueueData_t *) NULL && list_ptr 110 dev/raidframe/rf_cvscan.c (*list_ptr)->priority > req->priority; list_ptr 111 dev/raidframe/rf_cvscan.c list_ptr = &((*list_ptr)->next)) { list_ptr 113 dev/raidframe/rf_cvscan.c req->next = (*list_ptr); list_ptr 114 dev/raidframe/rf_cvscan.c (*list_ptr) = req; list_ptr 119 dev/raidframe/rf_cvscan.c rf_ReqInsert(RF_DiskQueueData_t **list_ptr, RF_DiskQueueData_t *req, list_ptr 128 dev/raidframe/rf_cvscan.c for (; (*list_ptr) != (RF_DiskQueueData_t *) NULL && list_ptr 129 dev/raidframe/rf_cvscan.c ((order == rf_cvscan_RIGHT && (*list_ptr)->sectorOffset <= list_ptr 131 dev/raidframe/rf_cvscan.c (*list_ptr)->sectorOffset > req->sectorOffset)); list_ptr 132 dev/raidframe/rf_cvscan.c list_ptr = &((*list_ptr)->next)) { list_ptr 134 dev/raidframe/rf_cvscan.c req->next = (*list_ptr); list_ptr 135 dev/raidframe/rf_cvscan.c (*list_ptr) = req; list_ptr 140 dev/raidframe/rf_cvscan.c rf_ReqDequeue(RF_DiskQueueData_t **list_ptr) list_ptr 142 dev/raidframe/rf_cvscan.c RF_DiskQueueData_t *ret = (*list_ptr); list_ptr 143 dev/raidframe/rf_cvscan.c if ((*list_ptr) != (RF_DiskQueueData_t *) NULL) { list_ptr 144 dev/raidframe/rf_cvscan.c (*list_ptr) = (*list_ptr)->next;