Lines Matching refs:oap
206 asset_path oap; in addAssetPath() local
207 for (size_t idx = 0; mZipSet.getOverlay(ap.path, idx, &oap); idx++) { in addAssetPath()
208 oap.isSystemAsset = isSystemAsset; in addAssetPath()
209 mAssetPaths.add(oap); in addAssetPath()
267 asset_path oap; in addOverlayPath() local
268 oap.path = overlayPath; in addOverlayPath()
269 oap.type = ::getFileType(overlayPath.string()); in addOverlayPath()
270 oap.idmap = idmapPath; in addOverlayPath()
275 mAssetPaths.add(oap); in addOverlayPath()
279 appendPathToResTable(oap); in addOverlayPath()
677 asset_path oap; in addSystemOverlays() local
683 oap.path = String8(buf, space - buf); in addSystemOverlays()
684 oap.type = kFileTypeRegular; in addSystemOverlays()
685 oap.idmap = String8(space + 1, newline - space - 1); in addSystemOverlays()
686 oap.isSystemOverlay = true; in addSystemOverlays()
691 oap); in addSystemOverlays()
694 Asset* oidmap = openIdmapLocked(oap); in addSystemOverlays()
697 const_cast<AssetManager*>(this)->mAssetPaths.add(oap); in addSystemOverlays()
698 const_cast<AssetManager*>(this)->mZipSet.addOverlay(targetPackagePath, oap); in addSystemOverlays()