Lines Matching defs:spipe
1587 struct snd_sof_pipeline *spipe;
1589 spipe = kzalloc(sizeof(*spipe), GFP_KERNEL);
1590 if (!spipe) {
1595 spipe->pipe_widget = swidget;
1596 swidget->spipe = spipe;
1597 list_add(&spipe->list, &sdev->pipeline_list);
1663 struct snd_sof_pipeline *spipe = swidget->spipe;
1665 list_del(&spipe->list);
1666 kfree(spipe);
1667 swidget->spipe = NULL;
2159 * @spipe: pointer to struct snd_sof_pipeline
2166 static int sof_set_widget_pipeline(struct snd_sof_dev *sdev, struct snd_sof_pipeline *spipe,
2169 struct snd_sof_widget *pipe_widget = spipe->pipe_widget;
2185 swidget->spipe = spipe;
2198 struct snd_sof_pipeline *spipe;
2215 list_for_each_entry(spipe, &sdev->pipeline_list, list) {
2216 struct snd_sof_widget *pipe_widget = spipe->pipe_widget;
2235 ret = sof_set_widget_pipeline(sdev, spipe, swidget);