Lines Matching refs:pool
54 struct DListHead *pool = &port->writePool;
59 while (!port->writeBusy && !DListIsEmpty(pool)) {
65 req = DLIST_FIRST_ENTRY(pool, struct UsbFnRequest, list);
80 DListInsertTail(&req->list, pool);
94 struct DListHead *pool = &port->readPool;
96 while (!DListIsEmpty(pool)) {
104 req = DLIST_FIRST_ENTRY(pool, struct UsbFnRequest, list);
110 DListInsertTail(&req->list, pool);
1092 struct DListHead *pool = &acm->ctrlPool;
1094 if (!DListIsEmpty(pool)) {
1095 req = DLIST_FIRST_ENTRY(pool, struct UsbFnRequest, list);
1114 HDF_LOGE("%{public}s: control request pool is empty", __func__);