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