Home | History | Annotate | Download | only in layers

Lines Matching refs:it

33     device_table_map::const_iterator it = tableMap.find((void *)key);
34 assert(it != tableMap.end() && "Not able to find device dispatch entry");
35 return it->second;
40 instance_table_map::const_iterator it = tableInstanceMap.find((void *)key);
42 if (it != tableInstanceMap.end()) {
44 it->second);
49 assert(it != tableInstanceMap.end() && "Not able to find instance dispatch entry");
50 return it->second;
55 device_table_map::const_iterator it = map.find((void *)key);
56 if (it != map.end()) {
57 fprintf(stderr, "destroy device dispatch_table: map: 0x%p, key: 0x%p, table: 0x%p\n", &map, key, it->second);
60 assert(it != map.end());
68 instance_table_map::const_iterator it = map.find((void *)key);
69 if (it != map.end()) {
70 fprintf(stderr, "destroy instance dispatch_table: map: 0x%p, key: 0x%p, table: 0x%p\n", &map, key, it->second);
73 assert(it != map.end());
85 device_table_map::const_iterator it = map.find((void *)key);
87 if (it != map.end()) {
89 it->second);
94 assert(it != map.end() && "Not able to find device dispatch entry");
95 return it->second;
100 instance_table_map::const_iterator it = map.find((void *)key);
102 if (it != map.end()) {
104 it->second);
109 assert(it != map.end() && "Not able to find instance dispatch entry");
110 return it->second;
141 instance_table_map::const_iterator it = map.find((void *)key);
143 if (it == map.end()) {
151 fprintf(stderr, "Instance: map: 0x%p, key: 0x%p, table: 0x%p\n", &map, key, it->second);
153 return it->second;
168 device_table_map::const_iterator it = map.find((void *)key);
170 if (it == map.end()) {
178 fprintf(stderr, "Device: map: 0x%p, key: 0x%p, table: 0x%p\n", &map, key, it->second);
180 return it->second;