Home
last modified time | relevance | path

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

/dports/lang/mono/mono-5.10.1.57/mono/metadata/
H A Dcominterop.c533 if (obj->itf_hash) in cominterop_get_interface_checked()
534 itf = g_hash_table_lookup (obj->itf_hash, GUINT_TO_POINTER ((guint)ic->interface_id)); in cominterop_get_interface_checked()
549 if (!obj->itf_hash) in cominterop_get_interface_checked()
550 obj->itf_hash = g_hash_table_new (mono_aligned_addr_hash, NULL); in cominterop_get_interface_checked()
551 g_hash_table_insert (obj->itf_hash, GUINT_TO_POINTER ((guint)ic->interface_id), itf); in cominterop_get_interface_checked()
1787 if (obj->itf_hash) { in ves_icall_System_ComObject_ReleaseInterfaces()
1797 g_hash_table_destroy (obj->itf_hash); in ves_icall_System_ComObject_ReleaseInterfaces()
1800 obj->itf_hash = NULL; in ves_icall_System_ComObject_ReleaseInterfaces()
1815 if (proxy->com_object->itf_hash) { in cominterop_rcw_finalizer()
1817 g_hash_table_destroy (proxy->com_object->itf_hash); in cominterop_rcw_finalizer()
[all …]
H A Dobject-internals.h319 GHashTable* itf_hash; member