Lines Matching refs:names

127 profile_get_values(profile_t profile, const char *const *names,  in profile_get_values()  argument
135 if ((retval = profile_node_iterator_create(profile, names, in profile_get_values()
167 errcode_t profile_get_value(profile_t profile, const char **names, in profile_get_value() argument
174 if ((retval = profile_node_iterator_create(profile, names, in profile_get_value()
199 const char *names[4]; in profile_get_string() local
202 names[0] = name; in profile_get_string()
203 names[1] = subname; in profile_get_string()
204 names[2] = subsubname; in profile_get_string()
205 names[3] = 0; in profile_get_string()
206 retval = profile_get_value(profile, names, &value); in profile_get_string()
230 const char *names[4]; in profile_get_integer() local
238 names[0] = name; in profile_get_integer()
239 names[1] = subname; in profile_get_integer()
240 names[2] = subsubname; in profile_get_integer()
241 names[3] = 0; in profile_get_integer()
242 retval = profile_get_value(profile, names, &value); in profile_get_integer()
311 const char *names[4]; in profile_get_boolean() local
318 names[0] = name; in profile_get_boolean()
319 names[1] = subname; in profile_get_boolean()
320 names[2] = subsubname; in profile_get_boolean()
321 names[3] = 0; in profile_get_boolean()
322 retval = profile_get_value(profile, names, &value); in profile_get_boolean()
337 profile_get_subsection_names(profile_t profile, const char **names, in profile_get_subsection_names() argument
345 if ((retval = profile_node_iterator_create(profile, names, in profile_get_subsection_names()
373 profile_get_relation_names(profile_t profile, const char **names, in profile_get_relation_names() argument
381 if ((retval = profile_node_iterator_create(profile, names, in profile_get_relation_names()
405 profile_iterator_create(profile_t profile, const char *const *names, int flags, in profile_iterator_create() argument
408 return profile_node_iterator_create(profile, names, flags, ret_iter); in profile_iterator_create()