Lines Matching refs:text_tables
192 GHashTable **text_tables; member
238 if (source->text_tables) in g_settings_schema_source_unref()
240 g_hash_table_unref (source->text_tables[0]); in g_settings_schema_source_unref()
241 g_hash_table_unref (source->text_tables[1]); in g_settings_schema_source_unref()
242 g_free (source->text_tables); in g_settings_schema_source_unref()
310 source->text_tables = NULL; in g_settings_schema_source_new_from_directory()
736 if (g_once_init_enter (&source->text_tables)) in g_settings_schema_source_get_text_tables()
738 GHashTable **text_tables; in g_settings_schema_source_get_text_tables() local
740 text_tables = g_new (GHashTable *, 2); in g_settings_schema_source_get_text_tables()
741 …text_tables[0] = g_hash_table_new_full (g_str_hash, g_str_equal, g_free, (GDestroyNotify) g_hash_t… in g_settings_schema_source_get_text_tables()
742 …text_tables[1] = g_hash_table_new_full (g_str_hash, g_str_equal, g_free, (GDestroyNotify) g_hash_t… in g_settings_schema_source_get_text_tables()
745 parse_into_text_tables (source->directory, text_tables[0], text_tables[1]); in g_settings_schema_source_get_text_tables()
747 g_once_init_leave (&source->text_tables, text_tables); in g_settings_schema_source_get_text_tables()
750 return source->text_tables; in g_settings_schema_source_get_text_tables()
1674 GHashTable **text_tables; in g_settings_schema_key_get_summary() local
1677 text_tables = g_settings_schema_source_get_text_tables (key->schema->source); in g_settings_schema_key_get_summary()
1678 summaries = g_hash_table_lookup (text_tables[0], key->schema->id); in g_settings_schema_key_get_summary()
1709 GHashTable **text_tables; in g_settings_schema_key_get_description() local
1712 text_tables = g_settings_schema_source_get_text_tables (key->schema->source); in g_settings_schema_key_get_description()
1713 descriptions = g_hash_table_lookup (text_tables[1], key->schema->id); in g_settings_schema_key_get_description()