Lines Matching refs:prop

75 	scf_simple_prop_t *prop;
86 prop = scf_simple_prop_get(NULL, FEDFS_CLIENT, pgname, "binddn");
87 if (!prop) {
95 p = scf_simple_prop_next_astring(prop);
100 scf_simple_prop_free(prop);
102 prop = scf_simple_prop_get(NULL, FEDFS_CLIENT, pgname, "bindpw");
103 if (!prop) {
111 p = scf_simple_prop_next_astring(prop);
138 scf_simple_prop_free(prop);
140 prop = scf_simple_prop_get(NULL, FEDFS_CLIENT, pgname, "sectype");
141 if (!prop) {
149 p = scf_simple_prop_next_astring(prop);
157 scf_simple_prop_free(prop);
159 prop = scf_simple_prop_get(NULL, FEDFS_CLIENT, pgname, "certpath");
160 if (!prop) {
168 p = scf_simple_prop_next_astring(prop);
176 scf_simple_prop_free(prop);
178 prop = scf_simple_prop_get(NULL, FEDFS_CLIENT, pgname, "nce");
179 if (!prop) {
187 p = scf_simple_prop_next_astring(prop);
192 scf_simple_prop_free(prop);
216 scf_property_t *prop, char *name)
224 if (scf_pg_get_property(pg, name, prop) == -1)
226 if (scf_property_get_value(prop, value) == -1)
253 scf_property_t *prop = NULL;
265 (prop = scf_property_create(h)) == NULL ||
305 list[num - 1].hostname = get_pg_value(h, pg, prop, "hostname");
306 list[num - 1].portnum = get_pg_value(h, pg, prop, "port");
390 scf_property_t *prop = NULL;
401 (prop = scf_property_create(h)) == NULL ||
405 new = (scf_pg_get_property(pg, propname, prop) != 0);
406 scf_property_destroy(prop);
552 scf_simple_prop_t *prop = NULL;
562 prop = scf_simple_prop_get(NULL, FEDFS_CLIENT, "default", "hostname");
563 if (!prop)
565 v = scf_simple_prop_next_astring(prop);
580 scf_simple_prop_free(prop);
594 scf_simple_prop_t *prop = NULL;
604 prop = scf_simple_prop_get(NULL, FEDFS_CLIENT, "default", "port");
605 if (!prop)
607 v = scf_simple_prop_next_astring(prop);
622 scf_simple_prop_free(prop);
637 scf_simple_prop_t *prop = NULL;
641 prop = scf_simple_prop_get(NULL, FEDFS_CLIENT, "default",
643 if (!prop) {
649 ret = scf_simple_prop_next_boolean(prop);
651 scf_simple_prop_free(prop);
663 fedfs_set_default(char *prop, char *value)
686 fprintf(stderr, "fedfs_set_default: setting %s=%s\n", prop, value);
689 if (strncmp(prop, "hostname", 8) == 0)
691 if (strncmp(prop, "port", 4) == 0)