• Home
  • Raw
  • Download

Lines Matching refs:new_entry

1036     ResolvedBag::Entry* new_entry = new_bag->entries;  in GetBag()  local
1048 new_entry->cookie = cookie; in GetBag()
1049 new_entry->key = new_key; in GetBag()
1050 new_entry->key_pool = nullptr; in GetBag()
1051 new_entry->type_pool = nullptr; in GetBag()
1052 new_entry->style = resid; in GetBag()
1053 new_entry->value.copyFrom_dtoh(map_entry->value); in GetBag()
1054 status_t err = entry.dynamic_ref_table->lookupResourceValue(&new_entry->value); in GetBag()
1057 "Failed to resolve value t=0x%02x d=0x%08x for key 0x%08x.", new_entry->value.dataType, in GetBag()
1058 new_entry->value.data, new_key); in GetBag()
1062 (new_entry != new_bag->entries && (new_entry->key < (new_entry - 1U)->key)); in GetBag()
1063 ++new_entry; in GetBag()
1094 ResolvedBag::Entry* new_entry = new_bag->entries; in GetBag() local
1114 new_entry->cookie = cookie; in GetBag()
1115 new_entry->key = child_key; in GetBag()
1116 new_entry->key_pool = nullptr; in GetBag()
1117 new_entry->type_pool = nullptr; in GetBag()
1118 new_entry->value.copyFrom_dtoh(map_entry->value); in GetBag()
1119 new_entry->style = resid; in GetBag()
1120 status_t err = entry.dynamic_ref_table->lookupResourceValue(&new_entry->value); in GetBag()
1123 "Failed to resolve value t=0x%02x d=0x%08x for key 0x%08x.", new_entry->value.dataType, in GetBag()
1124 new_entry->value.data, child_key); in GetBag()
1130 memcpy(new_entry, parent_entry, sizeof(*new_entry)); in GetBag()
1134 (new_entry != new_bag->entries && (new_entry->key < (new_entry - 1U)->key)); in GetBag()
1140 ++new_entry; in GetBag()
1153 new_entry->cookie = cookie; in GetBag()
1154 new_entry->key = new_key; in GetBag()
1155 new_entry->key_pool = nullptr; in GetBag()
1156 new_entry->type_pool = nullptr; in GetBag()
1157 new_entry->value.copyFrom_dtoh(map_entry->value); in GetBag()
1158 new_entry->style = resid; in GetBag()
1159 status_t err = entry.dynamic_ref_table->lookupResourceValue(&new_entry->value); in GetBag()
1162 new_entry->value.dataType, new_entry->value.data, new_key); in GetBag()
1166 (new_entry != new_bag->entries && (new_entry->key < (new_entry - 1U)->key)); in GetBag()
1168 ++new_entry; in GetBag()
1175 memcpy(new_entry, parent_entry, num_entries_to_copy * sizeof(*new_entry)); in GetBag()
1176 new_entry += num_entries_to_copy; in GetBag()
1180 const size_t actual_count = new_entry - new_bag->entries; in GetBag()