Lines Matching refs:tableInstanceMap
33 static instance_table_map tableInstanceMap; variable
47 instance_table_map::const_iterator it = tableInstanceMap.find((void *)key); in instance_dispatch_table()
49 if (it != tableInstanceMap.end()) { in instance_dispatch_table()
50 …nstance_dispatch_table: map: %p, object: %p, key: %p, table: %p\n", &tableInstanceMap, object, key, in instance_dispatch_table()
53 …e_dispatch_table: map: %p, object: %p, key: %p, table: UNKNOWN\n", &tableInstanceMap, object, key); in instance_dispatch_table()
56 assert(it != tableInstanceMap.end() && "Not able to find instance dispatch entry"); in instance_dispatch_table()
88 void destroy_instance_dispatch_table(dispatch_key key) { destroy_dispatch_table(tableInstanceMap, k… in destroy_instance_dispatch_table()
95 …"device_dispatch_table: map: %p, object: %p, key: %p, table: %p\n", &tableInstanceMap, object, key, in get_dispatch_table()
98 …e_dispatch_table: map: %p, object: %p, key: %p, table: UNKNOWN\n", &tableInstanceMap, object, key); in get_dispatch_table()
111 …nstance_dispatch_table: map: %p, object: %p, key: %p, table: %p\n", &tableInstanceMap, object, key, in get_dispatch_table()
114 …e_dispatch_table: map: %p, object: %p, key: %p, table: UNKNOWN\n", &tableInstanceMap, object, key); in get_dispatch_table()
170 return initInstanceTable(instance, gpa, tableInstanceMap); in initInstanceTable()