Lines Matching defs:path
2089 * Check if the log path exists
2092 * path (input) - log path
2099 fs_is_valid_logvol(char *path)
2103 if (stat64(path, &st) < 0)
2113 * Make a temporary file using the working directory path and the
2117 * buf (output) - the temporary file name path
2134 NDMP_LOG(LOG_DEBUG, "NDMP work path not specified");
2140 "Log file path cannot be on system volumes.");
2146 NDMP_LOG(LOG_DEBUG, "NDMP work path not specified");
2161 * Make a directory path for temporary files under the NDMP
2165 * buf (output) - result path
2176 char path[PATH_MAX];
2186 (void) strlcpy(path, (char *)p, PATH_MAX);
2187 (void) trim_whitespace(path);
2192 (void) tlm_cat_path(buf, path, name);
2204 ndmp_is_chkpnt_root(char *path)
2208 if (stat64(path, &st) != 0) {
2209 NDMP_LOG(LOG_DEBUG, "Couldn't stat path \"%s\"", path);