Home | History | Annotate | Download | only in idmap

Lines Matching refs:Overlay

24     struct Overlay {
25 Overlay() {}
26 Overlay(const String8& a, const String8& i, int p) :
29 bool operator<(Overlay const& rhs) const
39 bool writePackagesList(const char *filename, const SortedVector<Overlay>& overlayVector)
60 const Overlay& overlay = overlayVector[i];
61 fprintf(fout, "%s %s\n", overlay.apk_path.string(), overlay.idmap_path.string());
143 // if property set & equal to value, then include overlay - otherwise skip
172 if (tag == String16("overlay")) {
239 SortedVector<Overlay> overlayVector;
270 ALOGE("error: failed to create idmap for target=%s overlay=%s idmap=%s\n",
275 Overlay overlay(String8(overlay_apk_path), idmap_path, priority);
276 overlayVector.add(overlay);