Lines Matching refs:ptable

633   PropertyTableFunc ptable;  member
700 PropertyTableFunc ptable, in edsio_initialize_host_type() argument
722 host->ptable = ptable; in edsio_initialize_host_type()
831 GHashTable* table = * prop->host->ptable (obj); in edsio_property_get()
861 table = (* prop->host->ptable (obj)) = g_hash_table_new (g_int_hash, g_int_equal); in edsio_property_get()
877 GHashTable* table = * prop->host->ptable (obj); in edsio_property_set()
884 table = (* prop->host->ptable (obj)) = g_hash_table_new (g_int_hash, g_int_equal); in edsio_property_set()
930 table = * prop->host->ptable (obj); in edsio_property_isset()
940 table = * prop->host->ptable (obj); in edsio_property_isset()
973 table = * prop->host->ptable (obj); in edsio_property_unset()
986 table = (* prop->host->ptable (obj)) = NULL; in edsio_property_unset()
1216 if (! pt->ptable) in edsio_persist_proptest_source()
1222 if (! (array = g_hash_table_lookup (pt->ptable, prop_name))) in edsio_persist_proptest_source()
1238 if (! pt->ptable) in pt_success()
1239 pt->ptable = g_hash_table_new (g_str_hash, g_str_equal); in pt_success()
1241 old = g_hash_table_lookup (pt->ptable, (gpointer) pt->kludge); in pt_success()
1246 g_hash_table_insert (pt->ptable, (gpointer) pt->kludge, result); in pt_success()
1260 if (! pt->ptable) in edsio_persist_proptest_isset()
1263 return g_hash_table_lookup (pt->ptable, prop_name) != NULL; in edsio_persist_proptest_isset()
1271 if (! pt->ptable) in edsio_persist_proptest_unset()
1274 old = g_hash_table_lookup (pt->ptable, prop_name); in edsio_persist_proptest_unset()
1279 g_hash_table_remove (pt->ptable, prop_name); in edsio_persist_proptest_unset()