Lines Matching defs:spipe
1564 struct snd_sof_pipeline *spipe;
1566 spipe = kzalloc(sizeof(*spipe), GFP_KERNEL);
1567 if (!spipe) {
1572 spipe->pipe_widget = swidget;
1573 swidget->spipe = spipe;
1574 list_add(&spipe->list, &sdev->pipeline_list);
1640 struct snd_sof_pipeline *spipe = swidget->spipe;
1642 list_del(&spipe->list);
1643 kfree(spipe);
1644 swidget->spipe = NULL;
2125 * @spipe: pointer to struct snd_sof_pipeline
2132 static int sof_set_widget_pipeline(struct snd_sof_dev *sdev, struct snd_sof_pipeline *spipe,
2135 struct snd_sof_widget *pipe_widget = spipe->pipe_widget;
2151 swidget->spipe = spipe;
2164 struct snd_sof_pipeline *spipe;
2181 list_for_each_entry(spipe, &sdev->pipeline_list, list) {
2182 struct snd_sof_widget *pipe_widget = spipe->pipe_widget;
2201 ret = sof_set_widget_pipeline(sdev, spipe, swidget);