Lines Matching refs:g_pg
140 static scf_propertygroup_t *g_pg;
178 * Return 1 if inst is enabled, 0 otherwise. Uses g_pg, g_prop, and g_val.
185 if (scf_instance_get_pg(inst, SCF_PG_GENERAL, g_pg) != 0) {
191 if (scf_pg_get_property(g_pg, SCF_PROPERTY_ENABLED, g_prop) != 0) {
218 * Fill in buf with the restarter of instance i. Uses g_pg, g_prop, and
224 if (scf_instance_get_pg_composed(i, NULL, SCF_PG_GENERAL, g_pg) != 0)
228 if (scf_pg_get_property(g_pg, SCF_PROPERTY_RESTARTER, g_prop) != 0) {
498 while (scf_iter_next_pg(g_pgiter, g_pg) > 0) {
499 if (scf_pg_get_property(g_pg, SCF_PROPERTY_ENTITIES, NULL) !=
508 if (scf_pg_get_name(g_pg, pgname, max_name_len + 1) < 0)
565 r = scf_iter_next_pg(g_pgiter, g_pg);
571 if (scf_pg_get_name(g_pg, pgname, max_name_len + 1) < 0)
576 if (scf_pg_get_property(g_pg, SCF_PROPERTY_GROUPING, g_prop) !=
588 if (scf_pg_get_property(g_pg, SCF_PROPERTY_ENTITIES, g_prop) !=
823 (g_pg = scf_pg_create(h)) == NULL ||