Home
last modified time | relevance | path

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

/third_party/glib/glib/
Dgrefstring.c103 G_LOCK_DEFINE_STATIC (interned_ref_strings);
104 static GHashTable *interned_ref_strings; variable
208 G_LOCK (interned_ref_strings); in g_ref_string_new_intern()
210 if (G_UNLIKELY (interned_ref_strings == NULL)) in g_ref_string_new_intern()
211 interned_ref_strings = g_hash_table_new (g_str_hash, interned_str_equal); in g_ref_string_new_intern()
213 res = g_hash_table_lookup (interned_ref_strings, str); in g_ref_string_new_intern()
222 G_UNLOCK (interned_ref_strings); in g_ref_string_new_intern()
227 g_hash_table_add (interned_ref_strings, res); in g_ref_string_new_intern()
228 G_UNLOCK (interned_ref_strings); in g_ref_string_new_intern()
256 G_LOCK (interned_ref_strings); in remove_if_interned()
[all …]