Lines Matching refs:gpg
193 scf_propertygroup_t *gpg; in modify_prop() local
200 if ((gpg = scf_pg_create(h)) == NULL || in modify_prop()
206 if (scf_instance_get_pg(inst, pg, gpg) == -1) { in modify_prop()
222 gpg) == -1) { in modify_prop()
234 if (scf_pg_get_property(gpg, prop, eprop) == -1) { in modify_prop()
248 if (scf_transaction_start(tx, gpg) == -1) { in modify_prop()
298 if (scf_pg_update(gpg) == -1) in modify_prop()
311 scf_pg_destroy(gpg); in modify_prop()
324 scf_propertygroup_t *gpg; in delete_prop() local
328 if ((gpg = scf_pg_create(h)) == NULL || in delete_prop()
334 if (scf_instance_get_pg(inst, pg, gpg) != SCF_SUCCESS) { in delete_prop()
342 if (scf_transaction_start(tx, gpg) != SCF_SUCCESS) { in delete_prop()
368 if (scf_pg_update(gpg) == -1) in delete_prop()
376 scf_pg_destroy(gpg); in delete_prop()