Home | History | Annotate | Download | only in modload

Lines Matching defs:props

66 	prop_dictionary_t ext_props, props;
81 props = prop_dictionary_create();
91 parse_param(props, optarg, parse_bool_param);
108 parse_param(props, optarg, parse_int_param);
121 parse_param(props, optarg, parse_string_param);
133 propsstr = prop_dictionary_externalize(props);
147 merge_dicts(ext_props, props);
177 prop_object_release(props);
183 parse_bool_param(prop_dictionary_t props, const char *name,
202 if (!prop_dictionary_set_bool(props, name, boolvalue))
207 parse_int_param(prop_dictionary_t props, const char *name,
218 if (!prop_dictionary_set_int64(props, name, intvalue))
223 parse_param(prop_dictionary_t props, const char *origstr,
237 fmt_handler(props, name, value);
243 parse_string_param(prop_dictionary_t props, const char *name,
250 if (!prop_dictionary_set_string(props, name, value))