/illumos-gate/usr/src/lib/libmail/common/ |
H A D | abspath.c | 34 * 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
|
/illumos-gate/usr/src/common/net/wanboot/ |
H A D | parseURL.c | 110 * A URL string should be of the form -> http[s]://host[:port]/abspath 144 * Find the hostport/abspath separator. 163 * If the URL string does not contain an abspath, then supply "/" 168 plen = strlcpy(url->abspath, ptr, sizeof (url->abspath)); 169 if (plen >= sizeof (url->abspath)) { 174 (void) strlcpy(url->abspath, "/", sizeof (url->abspath));
|
H A D | parseURL.h | 60 char abspath[URL_MAX_PATHLEN]; member in struct:__anon2030
|
H A D | bootlog.c | 259 bl_url.abspath, url_encode(ringmessage));
|
H A D | boot_http.c | 132 #define CONN_ABSPATH c_id->uri.abspath
|
/illumos-gate/usr/src/lib/libshell/common/tests/ |
H A D | exit.sh | 34 function abspath function 44 ABSHELL=$(abspath)
|
/illumos-gate/usr/src/lib/libmail/inc/ |
H A D | libmail.h | 59 extern string *abspath(char *path, char *dot, string *to); 77 extern string *abspath();
|
/illumos-gate/usr/src/lib/libmail/ |
H A D | Makefile.com | 31 OBJECTS= abspath.o casncmp.o copystream.o delempty.o \
|
/illumos-gate/usr/src/tools/depcheck/ |
H A D | make_pkg_db | 344 $abspath = join("/", @AbsPath); 345 if (!$FTYPE{$abspath}) { # no installed entity ! 347 &yelp("***CANNOT FIND ABSOLUTE PATH $abspath FOR ENTRY: $entry=$rellink\n"); 348 # &yelp("***CANNOT RESOLVE ABSOLUTE PATH $abspath\n"); 360 # $abspath = ""; 362 return $abspath;
|
/illumos-gate/usr/src/lib/libtsol/common/ |
H A D | setflabel.c | 51 static int abspath(char *, const char *, char *); 105 if (abspath(cwd, path, canon) < 0) 269 abspath(char *wd, const char *raw, char *canon) function
|
/illumos-gate/usr/src/tools/scripts/ |
H A D | git-pbchk.py | 95 return os.path.abspath(os.path.join(p.readlines()[0], 191 c = os.path.abspath(os.path.join(root, path)).split(os.path.sep) 192 s = os.path.abspath(here).split(os.path.sep)
|
/illumos-gate/usr/src/psm/stand/boot/sparc/common/ |
H A D | wanboot.c | 304 plen = strlen(req_url->abspath); 305 ppath = req_url->abspath + plen; 326 (void) strcat(req_url->abspath, "&NONCE="); 327 (void) strcat(req_url->abspath, n); 749 if ((ret = http_get_request(*handlep, url->abspath)) == 0) { 758 if ((ret = http_get_range_request(*handlep, url->abspath, 1084 plen = sizeof (server_url.abspath); 1086 strlcpy(server_url.abspath, urlstr, plen) >= plen) { 1623 * http://host[:port]/abspath.
|
/illumos-gate/usr/src/cmd/fs.d/ufs/df/ |
H A D | df.c | 80 static int abspath(char *, char *, char *); 798 if (abspath(cwd, path, scratch) < 0) 803 * abspath was "/" and chrootpath isn't the null string, we 854 abspath(char *wd, char *raw, char *canon) function
|
/illumos-gate/usr/src/lib/libdevinfo/ |
H A D | devfsmap.c | 1483 char *abspath, *minor; local 1507 if ((abspath = strstr(physpath, 1516 abspath = physpath; 1521 abspath += sizeof (SLASH_DEVICES_SLASH) - 2; 1523 if ((minor = strrchr(abspath, ':')) != NULL) 1526 if (strcmp(nodepath, abspath) == 0) {
|
H A D | devinfo_devlink.c | 1194 char abspath[PATH_MAX]; local 1260 size_t n = sizeof (abspath); 1261 if (strlcpy(abspath, link, n) >= n) 1263 p = strrchr(abspath, '/') + 1; 1265 n = sizeof (abspath) - strlen(p); 1269 if (strlcpy(abspath, buf, sizeof (abspath)) >= 1270 sizeof (abspath)) 1273 if (!device_exists(abspath))
|
/illumos-gate/usr/src/lib/libpkg/common/ |
H A D | pkgweb.c | 1925 if ((http_head_request(ps->hps, ps->url.abspath)) != 0) { 1969 if (http_get_range_request(ps->hps, ps->url.abspath, 2021 if ((http_get_request(ps->hps, ps->url.abspath)) 2195 if ((bname = get_endof_string(ps->url.abspath, '/')) == NULL) { 2198 gettext(ERR_PARSE_URL), ps->url.abspath); 2713 if (ps->url.abspath) 2714 if (strlcat(buf, ps->url.abspath, PATH_MAX) >= PATH_MAX)
|
/illumos-gate/usr/src/cmd/zoneadmd/ |
H A D | vplat.c | 992 char abspath[MAXPATHLEN], *slashp, *slashp_next; local 1008 * Join rootpath and dir. Make sure abspath ends with '/', this 1014 if (snprintf(abspath, sizeof (abspath), 1015 "%s%s/", rootpath, dir) >= sizeof (abspath)) { 1023 * at a time. Continue until we've evaluated all of abspath. 1025 slashp = &abspath[strlen(rootpath)]; 1032 rv = valid_mount_point(zlogp, abspath, B_FALSE); 1035 rv = valid_mount_point(zlogp, abspath, B_TRUE);
|
/illumos-gate/usr/src/test/test-runner/cmd/ |
H A D | run | 798 setattr(parser.values, option.dest, os.path.abspath(value)) 844 options.pathnames = [os.path.abspath(path) for path in pathnames]
|
/illumos-gate/usr/src/tools/onbld/hgext/ |
H A D | cdm.py | 1275 backup = os.path.abspath(backup)
|