Lines Matching defs:dev_qp
129 struct comp_device_qp *dev_qp;
216 dev_qp = calloc(1, sizeof(struct comp_device_qp));
217 if (!dev_qp) {
221 dev_qp->device = device;
222 dev_qp->qp = i;
223 dev_qp->chan = NULL;
224 TAILQ_INSERT_TAIL(&g_comp_device_qp, dev_qp, link);
244 TAILQ_FOREACH_SAFE(dev_qp, &g_comp_device_qp, link, tmp_qp) {
245 TAILQ_REMOVE(&g_comp_device_qp, dev_qp, link);
246 free(dev_qp);
918 struct comp_device_qp *dev_qp;
928 while ((dev_qp = TAILQ_FIRST(&g_comp_device_qp))) {
929 TAILQ_REMOVE(&g_comp_device_qp, dev_qp, link);
930 free(dev_qp);