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

/freebsd-9.3-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-9.3-release/sbin/mount/
H A Dmntopts.h96 void checkpath(const char *, char resolved_path[]);
/freebsd-9.3-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-9.3-release/contrib/libucl/src/
H A Ducl_util.c94 static char* realpath(const char *path, char *resolved_path) { argument
103 return _fullpath(resolved_path, tmp, MAX_PATH);

Completed in 50 milliseconds