Lines Matching refs:tplg
137 static int load_topology(snd_tplg_t **tplg, char *config, in load_topology() argument
142 *tplg = snd_tplg_create(cflags); in load_topology()
143 if (*tplg == NULL) { in load_topology()
148 err = snd_tplg_load(*tplg, config, config_size); in load_topology()
152 snd_tplg_free(*tplg); in load_topology()
215 snd_tplg_t *tplg; in dump() local
223 err = load_topology(&tplg, config, size, cflags); in dump()
227 err = snd_tplg_save(tplg, &text, sflags); in dump()
228 snd_tplg_free(tplg); in dump()
284 snd_tplg_t *tplg; in compile() local
314 err = load_topology(&tplg, pconfig, size, cflags); in compile()
319 err = load_topology(&tplg, config, config_size, cflags); in compile()
324 err = snd_tplg_build_bin(tplg, &bin, &size); in compile()
325 snd_tplg_free(tplg); in compile()
339 snd_tplg_t *tplg; in decode() local
347 tplg = snd_tplg_create(cflags); in decode()
348 if (tplg == NULL) { in decode()
352 err = snd_tplg_decode(tplg, bin, size, dflags); in decode()
355 snd_tplg_free(tplg); in decode()
360 err = snd_tplg_save(tplg, &text, sflags); in decode()
361 snd_tplg_free(tplg); in decode()