Home
last modified time | relevance | path

Searched refs:eprop (Results 1 – 6 of 6) sorted by relevance

/illumos-gate/usr/src/cmd/cmd-inet/usr.sbin/inetadm/
H A Dinetadm.c192 scf_property_t *eprop; in modify_prop() local
199 (eprop = scf_property_create(h)) == NULL || in modify_prop()
232 if (scf_pg_get_property(gpg, prop, eprop) == -1) { in modify_prop()
308 scf_property_destroy(eprop); in modify_prop()
323 scf_property_t *eprop; in delete_prop() local
327 (eprop = scf_property_create(h)) == NULL || in delete_prop()
373 scf_property_destroy(eprop); in delete_prop()
/illumos-gate/usr/src/lib/libscf/common/
H A Dmidlevel.c483 scf_property_t *eprop = NULL; in get_inst_enabled() local
493 (eprop = scf_property_create(h)) == NULL || in get_inst_enabled()
498 scf_pg_get_property(gpg, SCF_PROPERTY_ENABLED, eprop) || in get_inst_enabled()
499 scf_property_get_value(eprop, v) || in get_inst_enabled()
506 scf_property_destroy(eprop); in get_inst_enabled()
528 scf_property_t *eprop = NULL; in set_inst_enabled() local
540 (eprop = scf_property_create(h)) == NULL || in set_inst_enabled()
576 if (scf_pg_get_property(gpg, SCF_PROPERTY_ENABLED, eprop) == -1) { in set_inst_enabled()
586 if (scf_property_get_value(eprop, v1) == -1) { in set_inst_enabled()
676 scf_property_destroy(eprop); in set_inst_enabled()
/illumos-gate/usr/src/cmd/cmd-inet/usr.sbin/inetconv/
H A Dinetconv.c1109 scf_property_t *eprop = NULL; in modify_sprop() local
1131 if ((eprop = scf_property_create(h)) == NULL) { in modify_sprop()
1136 if (scf_pg_get_property(gpg, prop, eprop) == -1) { in modify_sprop()
1199 scf_property_destroy(eprop); in modify_sprop()
/illumos-gate/usr/src/uts/common/inet/ip/
H A Dsadb.c5340 sadb_prop_t *eprop; local
5348 allocsize = sizeof (*eprop);
5389 eprop = (sadb_prop_t *)mp->b_rptr;
5391 cur = mp->b_rptr + sizeof (*eprop);
5394 eprop->sadb_x_prop_ereserved = 0;
5395 eprop->sadb_x_prop_numecombs = 0;
5398 eprop->sadb_prop_replay = (replay == 0) ?
5414 eprop->sadb_x_prop_numecombs++;
5764 regular = extended = prop = eprop = NULL;
5813 if (eprop == NULL)
[all …]
/illumos-gate/usr/src/cmd/svc/svcs/
H A Dsvcs.c2339 scf_property_t *eprop; in print_detailed_dependency() local
2345 if ((eprop = scf_property_create(h)) == NULL || in print_detailed_dependency()
2351 if (scf_pg_get_property(pg, SCF_PROPERTY_ENTITIES, eprop) != in print_detailed_dependency()
2353 scf_property_type(eprop, &ty) != SCF_SUCCESS || in print_detailed_dependency()
2375 if (scf_iter_property_values(iter, eprop) == -1) in print_detailed_dependency()
2403 scf_property_destroy(eprop); in print_detailed_dependency()
/illumos-gate/usr/src/lib/libipsecutil/common/
H A Dipsec_util.c2439 print_eprop(FILE *file, char *prefix, struct sadb_prop *eprop) in print_eprop() argument
2448 eprop->sadb_prop_replay); in print_eprop()
2450 "number of combinations = %u.\n"), eprop->sadb_x_prop_numecombs); in print_eprop()
2452 sofar = (uint64_t *)(eprop + 1); in print_eprop()
2455 for (i = 0; i < eprop->sadb_x_prop_numecombs; ) { in print_eprop()