Lines Matching refs:pathname
52 char *n, *p, *pathname;
74 pathname = pa_sprintf_malloc("%s" PA_PATH_SEP "%s" PA_SOEXT, p, n);
75 result = access(pathname, F_OK) == 0 ? true : false;
76 pa_log_debug("Checking for existence of '%s': %s", pathname, result ? "success" : "failure");
77 pa_xfree(pathname);
89 pathname = pa_sprintf_malloc("%s" PA_PATH_SEP "src" PA_PATH_SEP "modules" PA_PATH_SEP "%s" PA_SOEXT, p, n);
91 pathname = pa_sprintf_malloc("%s" PA_PATH_SEP ".libs" PA_PATH_SEP "%s" PA_SOEXT, p, n);
93 result = access(pathname, F_OK) == 0 ? true : false;
94 pa_log_debug("Checking for existence of '%s': %s", pathname, result ? "success" : "failure");
95 pa_xfree(pathname);