Lines Matching defs:err
173 int err;
175 err = snd_output_stdio_attach(&out, stdout, 0);
176 if (err < 0)
177 return err;
178 err = snd_config_save(top, out);
180 return err;
186 int err;
188 err = load_configuration(file, &top, NULL);
189 if (err < 0)
190 return err;
191 err = dump_config_tree(top);
193 return err;
199 int err;
201 err = snd_config_update_ref(&top);
202 if (err < 0)
203 return err;
205 err = snd_config_search_definition(top, "cards", "_dummy_", &cfg2);
206 if (err >= 0)
208 err = dump_config_tree(top);
210 return err;