Lines Matching refs:prop

220  * identification (the FMRI if fmris is true, pg/prop otherwise) and the type
224 display_prop(scf_propertygroup_t *pg, scf_property_t *prop)
242 if (scf_property_to_fmri(prop, buf, buf_sz) == -1)
256 if (scf_property_get_name(prop, buf, buf_sz) < 0)
265 if (scf_property_type(prop, &ty) == -1)
275 if (scf_iter_property_values(iter, prop) == -1)
309 scf_property_t *prop;
315 if ((prop = scf_property_create(hndl)) == NULL ||
322 while ((ret = scf_iter_next_property(iter, prop)) == 1)
323 display_prop(pg, prop);
328 scf_property_destroy(prop);
409 * display_{pg,prop}() the named property groups and/or properties. Otherwise
417 scf_property_t *prop;
478 (prop = scf_property_create(hndl)) == NULL)
560 if (scf_pg_get_property(pg, spn->spn_comp2, prop) == -1) {
587 display_prop(pg, prop);
590 scf_property_destroy(prop);
603 scf_property_t *prop;
614 prop = scf_property_create(hndl);
615 if (prop == NULL)
637 if (scf_pg_get_property(pg, spn->spn_comp1, prop) == 0) {
639 display_prop(pg, prop);
669 process_prop(scf_propertygroup_t *pg, scf_property_t *prop)
680 display_prop(pg, prop);
694 if (wip->prop != NULL) {
695 process_prop(wip->pg, wip->prop);
767 * _scf_pg_wait() for the pg, and display_pg(pg) or display_prop(pg, prop)
774 scf_property_t *prop;
782 (prop = scf_property_create(hndl)) == NULL)
785 if (wip->prop != NULL) {
806 if (scf_pg_get_property(wip->pg, propname, prop) !=
859 if (scf_pg_get_property(lpg, propname, prop) !=
906 if (scf_pg_get_property(lpg, propname, prop) !=
953 if (scf_pg_get_property(pg, propname, prop) == SCF_SUCCESS) {
955 display_prop(pg, prop);
970 scf_property_destroy(prop);