HomeSort by relevance Sort by last modified time
    Searched defs:LoadedIdmap (Results 1 - 2 of 2) sorted by null

  /frameworks/base/libs/androidfw/include/androidfw/
Idmap.h 37 // A LoadedIdmap can be set alongside the overlay's LoadedArsc to allow the overlay ApkAssets to
39 class LoadedIdmap {
42 static std::unique_ptr<const LoadedIdmap> Load(const StringPiece& idmap_data);
62 LoadedIdmap() = default;
69 DISALLOW_COPY_AND_ASSIGN(LoadedIdmap);
71 explicit LoadedIdmap(const Idmap_header* header);
  /frameworks/base/libs/androidfw/
Idmap.cpp 47 bool LoadedIdmap::Lookup(const IdmapEntry_header* header, uint16_t input_entry_id,
112 LoadedIdmap::LoadedIdmap(const Idmap_header* header) : header_(header) {
118 std::unique_ptr<const LoadedIdmap> LoadedIdmap::Load(const StringPiece& idmap_data) {
127 std::unique_ptr<LoadedIdmap> loaded_idmap = std::unique_ptr<LoadedIdmap>(new LoadedIdmap(header));
178 uint8_t LoadedIdmap::TargetPackageId() const {
182 const IdmapEntry_header* LoadedIdmap::GetEntryMapForType(uint8_t type_id) const
    [all...]

Completed in 69 milliseconds