Lines Matching refs:zd
4206 zone_dataset_t *zd; in parse_zfs() local
4222 zd = kmem_alloc(sizeof (zone_dataset_t), KM_SLEEP); in parse_zfs()
4231 zd->zd_dataset = kmem_alloc(len + 1, KM_SLEEP); in parse_zfs()
4232 bcopy(dataset, zd->zd_dataset, len); in parse_zfs()
4233 zd->zd_dataset[len] = '\0'; in parse_zfs()
4235 list_insert_head(&zone->zone_datasets, zd); in parse_zfs()
6627 zone_dataset_t *zd; in zone_dataset_visible() local
6641 for (zd = list_head(&zone->zone_datasets); zd != NULL; in zone_dataset_visible()
6642 zd = list_next(&zone->zone_datasets, zd)) { in zone_dataset_visible()
6644 len = strlen(zd->zd_dataset); in zone_dataset_visible()
6646 bcmp(dataset, zd->zd_dataset, len) == 0 && in zone_dataset_visible()
6662 for (zd = list_head(&zone->zone_datasets); zd != NULL; in zone_dataset_visible()
6663 zd = list_next(&zone->zone_datasets, zd)) { in zone_dataset_visible()
6668 if (len < strlen(zd->zd_dataset) && in zone_dataset_visible()
6669 bcmp(dataset, zd->zd_dataset, len) == 0 && in zone_dataset_visible()
6670 zd->zd_dataset[len] == '/') { in zone_dataset_visible()