Home
last modified time | relevance | path

Searched refs:parent_entry (Results 1 – 1 of 1) sorted by relevance

/frameworks/base/libs/androidfw/
DAssetManager2.cpp668 const ResolvedBag::Entry* parent_entry = parent_bag->entries; in GetBag() local
669 const ResolvedBag::Entry* const parent_entry_end = parent_entry + parent_bag->entry_count; in GetBag()
672 while (map_entry != map_entry_end && parent_entry != parent_entry_end) { in GetBag()
682 if (child_key <= parent_entry->key) { in GetBag()
700 memcpy(new_entry, parent_entry, sizeof(*new_entry)); in GetBag()
703 if (child_key >= parent_entry->key) { in GetBag()
705 ++parent_entry; in GetBag()
737 if (parent_entry != parent_entry_end) { in GetBag()
739 const size_t num_entries_to_copy = parent_entry_end - parent_entry; in GetBag()
740 memcpy(new_entry, parent_entry, num_entries_to_copy * sizeof(*new_entry)); in GetBag()