Lines Matching refs:new_entry

821     ResolvedBag::Entry* new_entry = new_bag->entries;  in GetBag()  local
833 new_entry->cookie = cookie; in GetBag()
834 new_entry->key = new_key; in GetBag()
835 new_entry->key_pool = nullptr; in GetBag()
836 new_entry->type_pool = nullptr; in GetBag()
837 new_entry->style = resid; in GetBag()
838 new_entry->value.copyFrom_dtoh(map_entry->value); in GetBag()
839 status_t err = entry.dynamic_ref_table->lookupResourceValue(&new_entry->value); in GetBag()
842 "Failed to resolve value t=0x%02x d=0x%08x for key 0x%08x.", new_entry->value.dataType, in GetBag()
843 new_entry->value.data, new_key); in GetBag()
846 ++new_entry; in GetBag()
872 ResolvedBag::Entry* new_entry = new_bag->entries; in GetBag() local
891 new_entry->cookie = cookie; in GetBag()
892 new_entry->key = child_key; in GetBag()
893 new_entry->key_pool = nullptr; in GetBag()
894 new_entry->type_pool = nullptr; in GetBag()
895 new_entry->value.copyFrom_dtoh(map_entry->value); in GetBag()
896 new_entry->style = resid; in GetBag()
897 status_t err = entry.dynamic_ref_table->lookupResourceValue(&new_entry->value); in GetBag()
900 "Failed to resolve value t=0x%02x d=0x%08x for key 0x%08x.", new_entry->value.dataType, in GetBag()
901 new_entry->value.data, child_key); in GetBag()
907 memcpy(new_entry, parent_entry, sizeof(*new_entry)); in GetBag()
915 ++new_entry; in GetBag()
928 new_entry->cookie = cookie; in GetBag()
929 new_entry->key = new_key; in GetBag()
930 new_entry->key_pool = nullptr; in GetBag()
931 new_entry->type_pool = nullptr; in GetBag()
932 new_entry->value.copyFrom_dtoh(map_entry->value); in GetBag()
933 new_entry->style = resid; in GetBag()
934 status_t err = entry.dynamic_ref_table->lookupResourceValue(&new_entry->value); in GetBag()
937 new_entry->value.dataType, new_entry->value.data, new_key); in GetBag()
941 ++new_entry; in GetBag()
948 memcpy(new_entry, parent_entry, num_entries_to_copy * sizeof(*new_entry)); in GetBag()
949 new_entry += num_entries_to_copy; in GetBag()
953 const size_t actual_count = new_entry - new_bag->entries; in GetBag()