• Home
  • Raw
  • Download

Lines Matching refs:plist

76     f->plist = pa_proplist_new();  in pa_format_info_new()
90 if (src->plist) in pa_format_info_copy()
91 dest->plist = pa_proplist_copy(src->plist); in pa_format_info_copy()
93 dest->plist = NULL; in pa_format_info_copy()
101 pa_proplist_free(f->plist); in pa_format_info_free()
106 return (f->encoding >= 0 && f->encoding < PA_ENCODING_MAX && f->plist != NULL); in pa_format_info_valid()
125 tmp = pa_proplist_to_string_sep(f->plist, " "); in pa_format_info_snprint()
149 pa_proplist *plist; in pa_format_info_from_string() local
152 plist = pa_proplist_from_string(properties); in pa_format_info_from_string()
154 if (!plist) in pa_format_info_from_string()
157 pa_proplist_free(f->plist); in pa_format_info_from_string()
158 f->plist = plist; in pa_format_info_from_string()
184 while ((key = pa_proplist_iterate(first->plist, &state))) { in pa_format_info_is_compatible()
187 value_one = pa_proplist_gets(first->plist, key); in pa_format_info_is_compatible()
188 value_two = pa_proplist_gets(second->plist, key); in pa_format_info_is_compatible()
248 str = pa_proplist_gets(f->plist, key); in pa_format_info_get_prop_type()
317 str = pa_proplist_gets(f->plist, key); in pa_format_info_get_prop_int()
350 str = pa_proplist_gets(f->plist, key); in pa_format_info_get_prop_int_range()
396 str = pa_proplist_gets(f->plist, key); in pa_format_info_get_prop_int_array()
440 str = pa_proplist_gets(f->plist, key); in pa_format_info_get_prop_string()
473 str = pa_proplist_gets(f->plist, key); in pa_format_info_get_prop_string_array()
631 pa_proplist_setf(f->plist, key, "%d", value); in pa_format_info_set_prop_int()
653 pa_proplist_sets(f->plist, key, str); in pa_format_info_set_prop_int_array()
661 pa_proplist_setf(f->plist, key, "{ \"" PA_JSON_MIN_KEY "\": %d, \"" PA_JSON_MAX_KEY "\": %d }", in pa_format_info_set_prop_int_range()
669 pa_proplist_setf(f->plist, key, "\"%s\"", value); in pa_format_info_set_prop_string()
690 pa_proplist_sets(f->plist, key, str); in pa_format_info_set_prop_string_array()