• Home
  • Raw
  • Download

Lines Matching refs:schemas

134   gchar **schemas;  in gsettings_list_schemas()  local
136 g_settings_schema_source_list_schemas (global_schema_source, TRUE, &schemas, NULL); in gsettings_list_schemas()
137 output_list (schemas); in gsettings_list_schemas()
138 g_strfreev (schemas); in gsettings_list_schemas()
144 gchar **schemas; in gsettings_list_schemas_with_paths() local
147 g_settings_schema_source_list_schemas (global_schema_source, TRUE, &schemas, NULL); in gsettings_list_schemas_with_paths()
149 for (i = 0; schemas[i] != NULL; i++) in gsettings_list_schemas_with_paths()
155 schema_name = g_steal_pointer (&schemas[i]); in gsettings_list_schemas_with_paths()
160 schemas[i] = g_strconcat (schema_name, " ", schema_path, NULL); in gsettings_list_schemas_with_paths()
166 output_list (schemas); in gsettings_list_schemas_with_paths()
167 g_strfreev (schemas); in gsettings_list_schemas_with_paths()
173 gchar **schemas; in gsettings_list_relocatable_schemas() local
175 g_settings_schema_source_list_schemas (global_schema_source, TRUE, NULL, &schemas); in gsettings_list_relocatable_schemas()
176 output_list (schemas); in gsettings_list_relocatable_schemas()
177 g_strfreev (schemas); in gsettings_list_relocatable_schemas()
300 gchar **schemas; in gsettings_list_recursively() local
303 g_settings_schema_source_list_schemas (global_schema_source, TRUE, &schemas, NULL); in gsettings_list_recursively()
305 for (i = 0; schemas[i]; i++) in gsettings_list_recursively()
309 settings = g_settings_new (schemas[i]); in gsettings_list_recursively()
314 g_strfreev (schemas); in gsettings_list_recursively()