Home
last modified time | relevance | path

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

/dports/mail/evolution/evolution-3.42.1/src/mail/
H A Dem-composer-utils.c1402 GHashTable *uids_order = user_data; in compare_sources_with_uids_order_cb() local
1405 aindex = GPOINTER_TO_INT (g_hash_table_lookup (uids_order, e_source_get_uid (asource))); in compare_sources_with_uids_order_cb()
1406 bindex = GPOINTER_TO_INT (g_hash_table_lookup (uids_order, e_source_get_uid (bsource))); in compare_sources_with_uids_order_cb()
1409 aindex = g_hash_table_size (uids_order); in compare_sources_with_uids_order_cb()
1411 bindex = g_hash_table_size (uids_order); in compare_sources_with_uids_order_cb()
1426 GHashTable *uids_order; in sort_sources_by_ui() local
1449 uids_order = g_hash_table_new_full (g_str_hash, g_str_equal, g_free, NULL); in sort_sources_by_ui()
1458 …g_hash_table_insert (uids_order, g_strdup (camel_service_get_uid (service)), GINT_TO_POINTER (inde… in sort_sources_by_ui()
1463 *psources = g_list_sort_with_data (*psources, compare_sources_with_uids_order_cb, uids_order); in sort_sources_by_ui()
1465 g_hash_table_destroy (uids_order); in sort_sources_by_ui()