Lines Matching refs:oap
222 asset_path oap; in addAssetPath() local
223 for (size_t idx = 0; mZipSet.getOverlay(ap.path, idx, &oap); idx++) { in addAssetPath()
224 oap.isSystemAsset = isSystemAsset; in addAssetPath()
225 mAssetPaths.add(oap); in addAssetPath()
283 asset_path oap; in addOverlayPath() local
284 oap.path = overlayPath; in addOverlayPath()
285 oap.type = ::getFileType(overlayPath.string()); in addOverlayPath()
286 oap.idmap = idmapPath; in addOverlayPath()
291 mAssetPaths.add(oap); in addOverlayPath()
295 appendPathToResTable(oap); in addOverlayPath()
723 asset_path oap; in addSystemOverlays() local
729 oap.path = String8(buf, space - buf); in addSystemOverlays()
730 oap.type = kFileTypeRegular; in addSystemOverlays()
731 oap.idmap = String8(space + 1, newline - space - 1); in addSystemOverlays()
732 oap.isSystemOverlay = true; in addSystemOverlays()
737 oap); in addSystemOverlays()
740 Asset* oidmap = openIdmapLocked(oap); in addSystemOverlays()
743 const_cast<AssetManager*>(this)->mAssetPaths.add(oap); in addSystemOverlays()
744 const_cast<AssetManager*>(this)->mZipSet.addOverlay(targetPackagePath, oap); in addSystemOverlays()