Lines Matching defs:filename
185 { "load-sample", pa_cli_command_scache_load, "Load a sound file into the sample cache (args: name, filename)", 3},
186 { "load-sample-lazy", pa_cli_command_scache_load, "Lazily load a sound file into the sample cache (args: name, filename)", 3},
197 { "play-file", pa_cli_command_play_file, "Play a sound file (args: filename, sink|index)", 3},
2091 char *filename;
2094 filename = pa_sprintf_malloc("%s" PA_PATH_SEP "etc" PA_PATH_SEP "pulse" PA_PATH_SEP "%s",
2099 filename = pa_xstrdup(fn);
2101 if (stat(filename, &st) < 0) {
2102 pa_log_warn("stat('%s'): %s", filename, pa_cstrerror(errno));
2104 pa_xfree(filename);
2111 if (!(d = opendir(filename))) {
2112 pa_log_warn("Failed to read '%s': %s", filename, pa_cstrerror(errno));
2114 pa_xfree(filename);
2133 pa_dynarray_append(files, pa_sprintf_malloc("%s" PA_PATH_SEP "%s", filename, de->d_name));
2163 pa_xfree(filename);
2168 } else if (pa_cli_command_execute_file(c, filename, buf, fail) < 0 && *fail) {
2169 pa_xfree(filename);
2173 pa_xfree(filename);
2182 const char *filename = cs+l+strspn(cs+l, whitespace);
2183 *ifstate = pa_module_exists(filename) ? IFSTATE_TRUE : IFSTATE_FALSE;