Home
last modified time | relevance | path

Searched refs:key_value_pairs (Results 1 – 7 of 7) sorted by relevance

/third_party/glib/gio/
Dgdbusaddress.c124 GHashTable *key_value_pairs, in is_valid_unix() argument
142 keys = g_hash_table_get_keys (key_value_pairs); in is_valid_unix()
147 path = g_hash_table_lookup (key_value_pairs, key); in is_valid_unix()
149 dir = g_hash_table_lookup (key_value_pairs, key); in is_valid_unix()
151 tmpdir = g_hash_table_lookup (key_value_pairs, key); in is_valid_unix()
153 abstract = g_hash_table_lookup (key_value_pairs, key); in is_valid_unix()
196 GHashTable *key_value_pairs, in is_valid_nonce_tcp() argument
216 keys = g_hash_table_get_keys (key_value_pairs); in is_valid_nonce_tcp()
221 host = g_hash_table_lookup (key_value_pairs, key); in is_valid_nonce_tcp()
223 port = g_hash_table_lookup (key_value_pairs, key); in is_valid_nonce_tcp()
[all …]
Dgdbusserver.c692 GHashTable *key_value_pairs, in try_unix() argument
705 path = g_hash_table_lookup (key_value_pairs, "path"); in try_unix()
706 dir = g_hash_table_lookup (key_value_pairs, "dir"); in try_unix()
707 tmpdir = g_hash_table_lookup (key_value_pairs, "tmpdir"); in try_unix()
708 abstract = g_hash_table_lookup (key_value_pairs, "abstract"); in try_unix()
832 GHashTable *key_value_pairs, in try_tcp() argument
848 host = g_hash_table_lookup (key_value_pairs, "host"); in try_tcp()
849 port = g_hash_table_lookup (key_value_pairs, "port"); in try_tcp()
851 if (g_hash_table_lookup (key_value_pairs, "noncefile") != NULL) in try_tcp()
1125 GHashTable *key_value_pairs; in initable_init() local
[all …]
/third_party/flutter/skia/tools/skpbench/
Dskiaperf.py40 def __init__(self, key_value_pairs=None): argument
42 if not key_value_pairs:
44 if len(key_value_pairs) % 2:
46 for k,v in zip(key_value_pairs[::2], key_value_pairs[1::2]):
/third_party/skia/tools/skpbench/
Dskiaperf.py40 def __init__(self, key_value_pairs=None): argument
42 if not key_value_pairs:
44 if len(key_value_pairs) % 2:
46 for k,v in zip(key_value_pairs[::2], key_value_pairs[1::2]):
/third_party/gn/src/base/strings/
Dstring_split.cc202 StringPairs* key_value_pairs) { in SplitStringIntoKeyValuePairs() argument
203 key_value_pairs->clear(); in SplitStringIntoKeyValuePairs()
208 key_value_pairs->reserve(pairs.size()); in SplitStringIntoKeyValuePairs()
212 if (!AppendStringKeyValue(pair, key_value_delimiter, key_value_pairs)) { in SplitStringIntoKeyValuePairs()
Dstring_split.h83 StringPairs* key_value_pairs);
/third_party/glib/glib/
Dgkeyfile.c527 GList *key_value_pairs; member
1311 key_file->current_group->key_value_pairs = in g_key_file_parse_comment()
1312 g_list_prepend (key_file->current_group->key_value_pairs, pair); in g_key_file_parse_comment()
1604 for (key_file_node = g_list_last (group->key_value_pairs); in g_key_file_to_data()
1669 for (tmp = group->key_value_pairs; tmp; tmp = tmp->next) in g_key_file_get_keys()
1682 for (tmp = group->key_value_pairs; tmp; tmp = tmp->next) in g_key_file_get_keys()
3399 g_list_free_full (group->key_value_pairs, (GDestroyNotify) g_key_file_key_value_pair_free); in g_key_file_set_top_comment()
3400 group->key_value_pairs = NULL; in g_key_file_set_top_comment()
3409 group->key_value_pairs = in g_key_file_set_top_comment()
3410 g_list_prepend (group->key_value_pairs, pair); in g_key_file_set_top_comment()
[all …]