Lines Matching defs:zonepath
430 * have to worry about the zonepath itself.
5201 char *zonepath;
5244 zonepath = kmem_alloc(size, KM_SLEEP);
5245 bcopy(zone->zone_rootpath, zonepath, size);
5246 zonepath[size - 1] = '\0';
5255 zonepath = "/";
5265 zonepath = kmem_alloc(size, KM_SLEEP);
5266 bcopy(zone_prefix, zonepath, prefix_len);
5267 bcopy(zone->zone_name, zonepath +
5269 zonepath[size - 1] = '\0';
5275 err = copyoutstr(zonepath, buf, bufsize, NULL);
5280 kmem_free(zonepath, size);