Home
last modified time | relevance | path

Searched refs:sourceFile (Results 1 – 13 of 13) sorted by relevance

/frameworks/base/packages/SystemUI/scripts/
Dnew_merge.py65 sourceFile = sourceDir + file
68 prepareFileForCompare(sourceFile, TEMP_FILE1, FW_RES_IMPORT, FW_PKG, PROTO_PKG)
72 prepareFileForCompare(sourceFile, TEMP_FILE2, FW_RES_IMPORT,)
77 diff(sourceFile, destFile)
81 diff(sourceFile, destFile)
/frameworks/base/packages/PackageInstaller/src/com/android/packageinstaller/
DPackageUtil.java56 public static PackageParser.Package getPackageInfo(Context context, File sourceFile) { in getPackageInfo() argument
60 return parser.parsePackage(sourceFile, 0); in getPackageInfo()
128 Activity pContext, ApplicationInfo appInfo, File sourceFile) { in getAppSnippet() argument
129 final String archiveFilePath = sourceFile.getAbsolutePath(); in getAppSnippet()
DDeleteStagedFileOnResult.java45 File sourceFile = new File(getIntent().getData().getPath()); in onActivityResult() local
46 sourceFile.delete(); in onActivityResult()
DInstallSuccess.java68 File sourceFile = new File(packageURI.getPath()); in onCreate() local
69 as = PackageUtil.getAppSnippet(this, appInfo, sourceFile); in onCreate()
DInstallFailed.java108 final File sourceFile = new File(packageURI.getPath()); in onCreate() local
109 as = PackageUtil.getAppSnippet(this, appInfo, sourceFile); in onCreate()
DInstallInstalling.java95 final File sourceFile = new File(mPackageURI.getPath()); in onCreate() local
96 PackageUtil.AppSnippet as = PackageUtil.getAppSnippet(this, appInfo, sourceFile); in onCreate()
DPackageInstallerActivity.java523 File sourceFile = new File(packageUri.getPath()); in processPackageUri() local
524 PackageParser.Package parsed = PackageUtil.getPackageInfo(this, sourceFile); in processPackageUri()
536 mAppSnippet = PackageUtil.getAppSnippet(this, mPkgInfo.applicationInfo, sourceFile); in processPackageUri()
/frameworks/base/services/core/java/com/android/server/rollback/
DRollbackStore.java218 File sourceFile = new File(codePath); in backupPackageCodePath() local
221 File targetFile = new File(targetDir, sourceFile.getName()); in backupPackageCodePath()
224 Files.copy(sourceFile.toPath(), targetFile.toPath()); in backupPackageCodePath()
/frameworks/base/tools/aapt/
DAaptAssets.h148 AaptFile(const String8& sourceFile, const AaptGroupEntry& groupEntry, in AaptFile() argument
152 , mSourceFile(sourceFile) in AaptFile()
/frameworks/base/core/java/android/app/
DContextImpl.java536 for (File sourceFile : sourceFiles) { in moveFiles()
537 final File targetFile = new File(targetDir, sourceFile.getName()); in moveFiles()
538 Log.d(TAG, "Migrating " + sourceFile + " to " + targetFile); in moveFiles()
540 FileUtils.copyFileOrThrow(sourceFile, targetFile); in moveFiles()
541 FileUtils.copyPermissions(sourceFile, targetFile); in moveFiles()
542 if (!sourceFile.delete()) { in moveFiles()
543 throw new IOException("Failed to clean up " + sourceFile); in moveFiles()
549 Log.w(TAG, "Failed to migrate " + sourceFile + ": " + e); in moveFiles()
/frameworks/layoutlib/create/.settings/
Dorg.eclipse.jdt.core.prefs13 org.eclipse.jdt.core.compiler.debug.sourceFile=generate
/frameworks/layoutlib/bridge/.settings/
Dorg.eclipse.jdt.core.prefs13 org.eclipse.jdt.core.compiler.debug.sourceFile=generate
/frameworks/base/core/tests/coretests/src/android/content/pm/
DPackageManagerTests.java333 File sourceFile = new File(archiveFilePath); in parsePackage() local
334 PackageParser.Package pkg = packageParser.parseMonolithicPackage(sourceFile, 0); in parsePackage()