Searched defs:resolved (Results 1 - 3 of 3) sorted by relevance

/osnet-11/usr/src/lib/libdevinfo/
H A Ddevinfo_realpath.c73 * components. Returns (resolved) on success, or (NULL) on failure,
74 * in which case the path which caused trouble is left in (resolved).
81 s_realpath(const char *path, char *resolved) argument
93 resolved[0] = '/';
94 resolved[1] = '\0';
96 return (resolved);
100 if (getcwd(resolved, PATH_MAX) == NULL) {
101 (void) strlcpy(resolved, ".", PATH_MAX);
104 resolved_len = strlen(resolved);
131 if (resolved[resolved_le
[all...]
/osnet-11/usr/src/lib/libsuri/common/
H A Dsuri_iscsi.c122 * Based on resolved hostname:port provided in 'tgt', add discovery addresses.
151 * resolved to.
247 * Remove all discovery addresses based on a resolved hostname and port in the
283 * each of those with one of the addresses that our hostname resolved
316 * processed is IPv4 but our resolved address is
331 * processed is IPv6 but our resolved address is
542 * cannot be resolved, use a string representation of the IP address.
561 struct addrinfo *resolved, hints = {NULL}; local
616 if ((err = getaddrinfo(saddr, NULL, &hints, &resolved)) != 0) {
627 if ((err = getnameinfo(resolved
[all...]
/osnet-11/usr/src/cmd/hal/tools/
H A Dhal-storage-mount.c316 char *resolved; local
379 resolved = resolve_symlink (entry);
381 printf ("/etc/fstab: device %s -> %s \n", entry, resolved);
383 if (strcmp (device, resolved) == 0) {
384 printf ("%s (-> %s) found in /etc/fstab. Not mounting.\n", entry, resolved);
388 g_free (resolved);
409 char *resolved; local
411 resolved = resolve_symlink (entry);
413 printf ("/proc/mounts: device %s -> %s \n", entry, resolved);
415 if (strcmp (device, resolved)
[all...]

Completed in 23 milliseconds