Searched defs:abspath (Results 1 - 6 of 6) sorted by relevance

/osnet-11/usr/src/lib/libmail/common/
H A Dabspath.c34 * abspath - expand a path relative to some `.'
37 * string *abspath(char *path, char *dot, string *to)
49 abspath(char *path, char *dot, string *to) function
/osnet-11/usr/src/lib/libtsol/common/
H A Dsetflabel.c49 static int abspath(char *, const char *, char *);
103 if (abspath(cwd, path, canon) < 0)
170 abspath(char *wd, const char *raw, char *canon) function
/osnet-11/usr/src/grub/grub2/grub-core/gfxmenu/
H A Dgui_string_util.c150 char *abspath; local
159 abspath = grub_malloc (grub_strlen (base) + grub_strlen (path) + 3);
160 if (! abspath)
164 p = grub_stpcpy (abspath, base);
165 l = grub_strlen (abspath);
166 if (l == 0 || abspath[l-1] != '/')
174 canonpath = canonicalize_path (abspath);
176 return abspath;
178 grub_free (abspath);
H A Dgui_circular_progress.c78 char *abspath; local
85 abspath = grub_resolve_relative_path (dir, file);
86 if (! abspath)
91 grub_video_bitmap_load (&bitmap, abspath);
94 grub_free (abspath);
/osnet-11/usr/src/lib/libdevinfo/
H A Ddevfsmap.c1482 char *abspath, *minor; local
1506 if ((abspath = strstr(physpath,
1515 abspath = physpath;
1520 abspath += sizeof (SLASH_DEVICES_SLASH) - 2;
1522 if ((minor = strrchr(abspath, ':')) != NULL)
1525 if (strcmp(nodepath, abspath) == 0) {
H A Ddevinfo_devlink.c1198 char abspath[PATH_MAX]; local
1264 size_t n = sizeof (abspath);
1265 if (strlcpy(abspath, link, n) >= n)
1267 p = strrchr(abspath, '/') + 1;
1269 n = sizeof (abspath) - strlen(p);
1273 if (strlcpy(abspath, buf, sizeof (abspath)) >=
1274 sizeof (abspath))
1277 if (!device_exists(abspath))

Completed in 28 milliseconds