Home | History | Annotate | Download | only in idmap

Lines Matching refs:Overlay

21     struct Overlay {
22 Overlay() {}
23 Overlay(const String8& a, const String8& i, int p) :
26 bool operator<(Overlay const& rhs) const
37 bool writePackagesList(const char *filename, const SortedVector<Overlay>& overlayVector)
45 const Overlay& overlay = overlayVector[i];
46 fprintf(fout, "%s %s\n", overlay.apk_path.string(), overlay.idmap_path.string());
113 if (tag == String16("overlay")) {
184 SortedVector<Overlay> overlayVector;
207 ALOGE("error: failed to create idmap for target=%s overlay=%s idmap=%s\n",
212 Overlay overlay(String8(overlay_apk_path), idmap_path, priority);
213 overlayVector.add(overlay);