Home
last modified time | relevance | path

Searched refs:storagePath (Results 1 – 4 of 4) sorted by relevance

/aosp12/frameworks/base/services/core/java/com/android/server/pm/
H A DCompilerStats.java82 String storagePath = getStoredPathFromCodePath(codePath); in getCompileTime() local
84 Long l = compileTimePerCodePath.get(storagePath); in getCompileTime()
93 String storagePath = getStoredPathFromCodePath(codePath); in setCompileTime() local
96 compileTimePerCodePath.remove(storagePath); in setCompileTime()
98 compileTimePerCodePath.put(storagePath, compileTimeInMs); in setCompileTime()
/aosp12/frameworks/base/tools/aapt/
H A DPackage.cpp228 String8 storagePath(entry.getPath()); in processAssets() local
229 storagePath.convertToResPath(); in processAssets()
230 if (!processFile(bundle, zip, storagePath, entry.getFile())) { in processAssets()
/aosp12/frameworks/base/services/incremental/
H A DIncrementalService.cpp2209 const IncFsMount& ifs, std::string_view storagePath) const { in getLoadingProgressFromPath()
2211 mFs->listFilesRecursive(storagePath, [&, this](auto filePath) { in getLoadingProgressFromPath()
/aosp12/frameworks/base/services/core/java/com/android/server/appop/
H A DAppOpsService.java1771 public AppOpsService(File storagePath, Handler handler, Context context) { in AppOpsService() argument
1775 mFile = new AtomicFile(storagePath, "appops"); in AppOpsService()