Lines Matching defs:rp_sz
5403 zone_get_zonepath(char *zone_name, char *zonepath, size_t rp_sz)
5415 (void) strlcpy(zonepath, zonecfg_root, rp_sz);
5422 (void) strlcpy(zonepath, "/", rp_sz);
5437 rp_sz - (cp - zonepath));
5461 err = zonecfg_get_zonepath(handle, zonepath, rp_sz);
5467 zone_get_rootpath(char *zone_name, char *rootpath, size_t rp_sz)
5474 if ((err = zone_get_zonepath(zone_name, rootpath, rp_sz)) != Z_OK)
5476 if (strlcat(rootpath, "/root", rp_sz) >= rp_sz)
5482 zone_get_brand(char *zone_name, char *brandname, size_t rp_sz)
5496 (void) strlcpy(brandname, NATIVE_BRAND_NAME, rp_sz);
5506 err = zone_getattr(myzoneid, ZONE_ATTR_BRAND, brandname, rp_sz);
5514 return (zonecfg_default_brand(brandname, rp_sz));
5521 err = zonecfg_get_brand(handle, brandname, rp_sz);
5533 zone_get_devroot(char *zone_name, char *devroot, size_t rp_sz)
5542 if ((err = zone_get_zonepath(zone_name, devroot, rp_sz)) != Z_OK)
5550 if (strlcat(devroot, suffix, rp_sz) >= rp_sz)