Lines Matching defs:prop
1060 scf_simple_prop_t *prop;
1064 prop = scf_simple_prop_get(NULL, NULL, "config", var);
1065 if (prop != NULL) {
1066 if ((val = scf_simple_prop_next_boolean(prop)) != NULL)
1068 scf_simple_prop_free(prop);
1071 if (prop == NULL || val == NULL) {
1083 scf_simple_prop_t *prop;
1087 prop = scf_simple_prop_get(NULL, NULL, "config", var);
1088 if (prop != NULL) {
1089 if ((val = scf_simple_prop_next_integer(prop)) != NULL) {
1096 scf_simple_prop_free(prop);
1099 if (prop == NULL || val == NULL) {