Lines Matching defs:scep
851 shadow_conspiracy_entry_t *scep;
863 scep = shadow_zalloc(sizeof (shadow_conspiracy_entry_t));
864 if (scep == NULL) {
869 if ((scep->swe_dataset = shadow_strdup(dataset)) == NULL) {
870 free(scep);
875 if ((scep->swe_source = shadow_strdup(source)) == NULL) {
876 free(scep->swe_dataset);
877 free(scep);
882 if ((scep->swe_shadow = shadow_open(mountpoint)) == NULL) {
883 free(scep->swe_source);
884 free(scep->swe_dataset);
885 free(scep);
891 "starting shadow migration for %s\n", scep->swe_dataset);
892 shadow_hash_insert(scp->sc_hash, scep);