Lines Matching refs:oap
223 asset_path oap; in addAssetPath() local
224 for (size_t idx = 0; mZipSet.getOverlay(ap.path, idx, &oap); idx++) { in addAssetPath()
225 oap.isSystemAsset = isSystemAsset; in addAssetPath()
226 mAssetPaths.add(oap); in addAssetPath()
284 asset_path oap; in addOverlayPath() local
285 oap.path = overlayPath; in addOverlayPath()
286 oap.type = ::getFileType(overlayPath.c_str()); in addOverlayPath()
287 oap.idmap = idmapPath; in addOverlayPath()
292 mAssetPaths.add(oap); in addOverlayPath()
296 appendPathToResTable(oap); in addOverlayPath()
724 asset_path oap; in addSystemOverlays() local
730 oap.path = String8(buf, space - buf); in addSystemOverlays()
731 oap.type = kFileTypeRegular; in addSystemOverlays()
732 oap.idmap = String8(space + 1, newline - space - 1); in addSystemOverlays()
733 oap.isSystemOverlay = true; in addSystemOverlays()
738 oap); in addSystemOverlays()
741 Asset* oidmap = openIdmapLocked(oap); in addSystemOverlays()
744 const_cast<AssetManager*>(this)->mAssetPaths.add(oap); in addSystemOverlays()
745 const_cast<AssetManager*>(this)->mZipSet.addOverlay(targetPackagePath, oap); in addSystemOverlays()