• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/gdb/sim/common/

Lines Matching defs:current_map

65   struct hw_handle_mapping *current_map = db->mappings;
66 if (current_map != NULL)
71 while (current_map->next != NULL)
73 if (current_map->external != current_map->next->external + 1)
75 current_map = current_map->next;
77 ASSERT (current_map->next == NULL);
78 if (current_map->external != 1)
94 struct hw_handle_mapping *current_map = db->mappings;
95 while (current_map != NULL)
97 if (current_map->external == external)
98 return current_map->ihandle;
99 current_map = current_map->next;
110 struct hw_handle_mapping *current_map = db->mappings;
111 while (current_map != NULL)
113 if (current_map->external == external)
114 return current_map->phandle;
115 current_map = current_map->next;
126 struct hw_handle_mapping *current_map = db->mappings;
127 while (current_map != NULL)
129 if (current_map->ihandle == internal)
130 return current_map->external;
131 current_map = current_map->next;
142 struct hw_handle_mapping *current_map = db->mappings;
143 while (current_map != NULL)
145 if (current_map->phandle == internal)
146 return current_map->external;
147 current_map = current_map->next;
202 struct hw_handle_mapping **current_map = &db->mappings;
203 while (*current_map != NULL)
205 if ((*current_map)->ihandle == internal)
207 struct hw_handle_mapping *delete = *current_map;
208 *current_map = delete->next;
212 current_map = &(*current_map)->next;
223 struct hw_handle_mapping **current_map = &db->mappings;
224 while (*current_map != NULL)
226 if ((*current_map)->phandle == internal)
228 struct hw_handle_mapping *delete = *current_map;
229 *current_map = delete->next;
233 current_map = &(*current_map)->next;