Searched refs:resolved_path (Results 1 - 7 of 7) sorted by relevance

/freebsd-10.2-release/usr.sbin/pkg_install/info/
H A Dperform.c261 char *tmp, *tmp1, *resolved_path; local
267 asprintf(&resolved_path, "%s/%s/", cwd, pathname);
269 asprintf(&resolved_path, "%s/", pathname);
271 if (resolved_path == NULL)
277 while ((tmp = strstr(resolved_path, "//")) != NULL)
280 while ((tmp = strstr(resolved_path, "/./")) != NULL)
283 while ((tmp = strstr(resolved_path, "/../")) != NULL) {
285 if ((tmp1 = strrchr(resolved_path, '/')) == NULL)
286 tmp1 = resolved_path;
290 len = strlen(resolved_path);
[all...]
/freebsd-10.2-release/contrib/llvm/tools/lldb/source/Host/common/
H A DFileSpec.cpp51 char resolved_path[PATH_MAX]; local
52 if (file_spec->GetPath (resolved_path, sizeof(resolved_path)))
53 return ::stat (resolved_path, stats_ptr) == 0;
217 char resolved_path[PATH_MAX]; local
218 if (::realpath (unglobbed_path, resolved_path))
221 return ::snprintf(dst_path, dst_len, "%s", resolved_path);
306 char resolved_path[PATH_MAX]; local
311 path_fit = (FileSpec::Resolve (pathname, resolved_path, sizeof(resolved_path)) < sizeo
822 char resolved_path[PATH_MAX]; local
859 char resolved_path[PATH_MAX]; local
884 char resolved_path[PATH_MAX]; local
[all...]
H A DHost.cpp1047 char resolved_path[PATH_MAX]; local
1064 FileSpec::Resolve (raw_path, resolved_path, sizeof(resolved_path));
1065 g_lldb_support_exe_dir.SetCString(resolved_path);
1085 char resolved_path[PATH_MAX]; local
1094 FileSpec::Resolve (raw_path, resolved_path, sizeof(resolved_path));
1095 g_lldb_headers_dir.SetCString(resolved_path);
1122 char resolved_path[PATH_MAX];
1149 FileSpec::Resolve (raw_path, resolved_path, sizeo
1176 char resolved_path[PATH_MAX]; local
[all...]
/freebsd-10.2-release/sbin/mount/
H A Dmntopts.h98 int checkpath(const char *, char resolved_path[]);
/freebsd-10.2-release/usr.sbin/cron/crontab/
H A Dcrontab.c134 char resolved_path[PATH_MAX]; local
214 } else if (realpath(Filename, resolved_path) != NULL &&
215 !strcmp(resolved_path, SYSCRONTAB)) {
/freebsd-10.2-release/contrib/llvm/tools/lldb/source/Commands/
H A DCommandObjectTarget.cpp2785 char resolved_path[PATH_MAX]; local
2787 if (file_spec.GetPath (resolved_path, sizeof(resolved_path)))
2789 if (strcmp (resolved_path, path) != 0)
2791 result.AppendErrorWithFormat ("invalid module path '%s' with resolved path '%s'\n", path, resolved_path);
/freebsd-10.2-release/contrib/libucl/src/
H A Ducl_util.c115 static char* ucl_realpath(const char *path, char *resolved_path) { argument
124 return _fullpath(resolved_path, tmp, MAX_PATH);

Completed in 145 milliseconds