Lines Matching +refs:val +refs:top
140 scf_value_t *val;
177 if ((val = scf_value_create(h)) == NULL) {
185 for (numvals = 0; (iterret = scf_iter_next_value(iter, val)) == 1;
196 if (scf_value_get_boolean(val,
202 if (scf_value_get_count(val,
208 if (scf_value_get_integer(val,
214 if (scf_value_get_time(val,
222 if ((valsize = scf_value_get_astring(val, NULL, 0)) ==
230 if (scf_value_get_astring(val,
246 if ((valsize = scf_value_get_ustring(val, NULL, 0)) ==
254 if (scf_value_get_ustring(val,
263 if ((valsize = scf_value_get_opaque(val, NULL, 0)) ==
272 if (scf_value_get_opaque(val,
299 (void) scf_value_destroy(val);
341 (void) scf_value_destroy(val);
966 scf_value_t *val = NULL;
972 ((val = scf_value_create(h)) == NULL))
979 scf_property_get_value(prop, val) == -1) {
985 if (scf_value_get_astring(val, state, sizeof (state)) <= 0) {
1007 (void) scf_value_destroy(val);
1453 scf_value_t *val = scf_value_create(simple_h->h);
1456 if ((val == NULL) || (prop == NULL)) {
1469 if (scf_property_get_value(prop, val) == -1) {
1476 if (scf_value_get_count(val, ret_count) == -1) {
1484 scf_value_destroy(val);
2807 top:
2873 goto top;