Home | History | Annotate | Download | only in raidframe

Lines Matching defs:vple

341 	RF_VoidPointerListElem_t *vple;
353 vple = raidPtr->stripebuf;
354 raidPtr->stripebuf = vple->next;
355 p = vple->p;
356 rf_FreeVPListElem(raidPtr, vple);
373 vple = rf_AllocVPListElem(raidPtr);
374 vple->p = p;
375 vple->next = dag_h->desc->stripebufs;
376 dag_h->desc->stripebufs = vple;
383 rf_FreeStripeBuffer(RF_Raid_t *raidPtr, RF_VoidPointerListElem_t *vple)
388 vple->next = raidPtr->stripebuf;
389 raidPtr->stripebuf = vple;
392 free(vple->p, M_RAIDFRAME);
393 rf_FreeVPListElem(raidPtr, vple);
405 RF_VoidPointerListElem_t *vple;
409 vple = rf_AllocVPListElem(raidPtr);
410 vple->p = p;
411 vple->next = dag_h->desc->iobufs;
412 dag_h->desc->iobufs = vple;
420 RF_VoidPointerListElem_t *vple;
432 vple = raidPtr->iobuf;
433 raidPtr->iobuf = vple->next;
434 p = vple->p;
435 rf_FreeVPListElem(raidPtr, vple);
456 rf_FreeIOBuffer(RF_Raid_t *raidPtr, RF_VoidPointerListElem_t *vple)
461 vple->next = raidPtr->iobuf;
462 raidPtr->iobuf = vple;
465 free(vple->p, M_RAIDFRAME);
466 rf_FreeVPListElem(raidPtr, vple);