Lines Matching refs:map_entry
1148 auto map_entry = map.offset(dtohs(map->size)).convert<ResTable_map>(); in GetBag() local
1149 const auto map_entry_end = map_entry + dtohl(map->count); in GetBag()
1160 const size_t entry_count = map_entry_end - map_entry; in GetBag()
1165 for (auto new_entry = new_bag->entries; map_entry != map_entry_end; ++map_entry) { in GetBag()
1166 if (UNLIKELY(!map_entry)) { in GetBag()
1170 uint32_t new_key = dtohl(map_entry->name.ident); in GetBag()
1186 new_entry->value.copyFrom_dtoh(map_entry->value); in GetBag()
1236 while (map_entry != map_entry_end && parent_entry != parent_entry_end) { in GetBag()
1237 if (UNLIKELY(!map_entry)) { in GetBag()
1241 uint32_t child_key = dtohl(map_entry->name.ident); in GetBag()
1257 new_entry->value.copyFrom_dtoh(map_entry->value); in GetBag()
1266 ++map_entry; in GetBag()
1283 while (map_entry != map_entry_end) { in GetBag()
1284 if (UNLIKELY(!map_entry)) { in GetBag()
1288 uint32_t new_key = dtohl(map_entry->name.ident); in GetBag()
1300 new_entry->value.copyFrom_dtoh(map_entry->value); in GetBag()
1310 ++map_entry; in GetBag()