Home
last modified time | relevance | path

Searched refs:outputPath (Results 1 – 6 of 6) sorted by relevance

/aosp14/frameworks/base/tests/utils/hostutils/src/com/android/internal/util/test/
H A DSystemPreparer.java92 public SystemPreparer pushResourceFile(String filePath, String outputPath) in pushResourceFile() argument
96 assertTrue(device.pushFile(copyResourceToTemp(filePath), outputPath)); in pushResourceFile() local
97 addPushedFile(device, outputPath); in pushResourceFile()
102 public SystemPreparer pushFile(File file, String outputPath) in pushFile() argument
106 assertTrue(device.pushFile(file, outputPath)); in pushFile()
107 addPushedFile(device, outputPath); in pushFile()
111 private void addPushedFile(ITestDevice device, String outputPath) in addPushedFile() argument
113 Path pathCreated = Paths.get(outputPath); in addPushedFile()
/aosp14/frameworks/base/services/core/java/com/android/server/pm/
H A DInstaller.java621 int dexoptNeeded, @Nullable String outputPath, int dexFlags, String compilerFilter, in dexopt() argument
630 BlockGuard.getVmPolicy().onPathAccess(outputPath); in dexopt()
634 return mInstalld.dexopt(apkPath, uid, pkgName, instructionSet, dexoptNeeded, outputPath, in dexopt()
858 BlockGuard.getVmPolicy().onPathAccess(outputPath); in moveAb()
860 mInstalld.moveAb(packageName, apkPath, instructionSet, outputPath); in moveAb()
871 String outputPath) throws InstallerException, LegacyDexoptDisabledException { in deleteOdex() argument
875 BlockGuard.getVmPolicy().onPathAccess(outputPath); in deleteOdex()
877 return mInstalld.deleteOdex(packageName, apkPath, instructionSet, outputPath); in deleteOdex()
1152 String outputPath) throws InstallerException, LegacyDexoptDisabledException { in getOdexVisibility() argument
1156 BlockGuard.getVmPolicy().onPathAccess(outputPath); in getOdexVisibility()
[all …]
H A DOtaDexoptService.java297 String instructionSet, int dexoptNeeded, @Nullable String outputPath, in generatePackageDexopts()
324 encodeParameter(builder, outputPath); in generatePackageDexopts()
/aosp14/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/unit/
H A DExifInterfaceTest.java173 String outputPath = new File(Environment.getExternalStorageDirectory(), in setUp() local
177 try (FileOutputStream outputStream = new FileOutputStream(outputPath)) { in setUp()
/aosp14/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
H A DCameraStreamer.java1448 public void createRecorder(String outputPath, CamcorderProfile profile) { in createRecorder() argument
1459 mRecorder.setOutputFile(outputPath); in createRecorder()
/aosp14/frameworks/base/tools/aapt/
H A DCommand.cpp2835 String8 outputPath = buildApkName(String8(outputAPKFile), split); in doPackage() local
2836 err = writeAPK(bundle, outputPath, split); in doPackage()
2838 fprintf(stderr, "ERROR: packaging of '%s' failed\n", outputPath.string()); in doPackage()