Home | History | Annotate | Download | only in layers

Lines Matching defs:key

30     dispatch_key key = get_dispatch_key(object);
31 device_table_map::const_iterator it = tableMap.find((void *)key);
37 dispatch_key key = get_dispatch_key(object);
38 instance_table_map::const_iterator it = tableInstanceMap.find((void *)key);
43 void destroy_dispatch_table(device_table_map &map, dispatch_key key) {
44 device_table_map::const_iterator it = map.find((void *)key);
51 void destroy_dispatch_table(instance_table_map &map, dispatch_key key) {
52 instance_table_map::const_iterator it = map.find((void *)key);
59 void destroy_device_dispatch_table(dispatch_key key) { destroy_dispatch_table(tableMap, key); }
61 void destroy_instance_dispatch_table(dispatch_key key) { destroy_dispatch_table(tableInstanceMap, key); }
64 dispatch_key key = get_dispatch_key(object);
65 device_table_map::const_iterator it = map.find((void *)key);
71 dispatch_key key = get_dispatch_key(object);
72 instance_table_map::const_iterator it = map.find((void *)key);
97 * as the key to these table maps.
100 * If use the object themselves as key to map then implies Create entrypoints have to be intercepted
101 * and a new key inserted into map */
104 dispatch_key key = get_dispatch_key(instance);
105 instance_table_map::const_iterator it = map.find((void *)key);
109 map[(void *)key] = pTable;
129 dispatch_key key = get_dispatch_key(device);
130 device_table_map::const_iterator it = map.find((void *)key);
134 map[(void *)key] = pTable;