Home
last modified time | relevance | path

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

/frameworks/base/tests/utils/hostutils/src/com/android/internal/util/test/
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()
/frameworks/base/services/core/java/com/android/server/pm/
DInstaller.java612 int dexoptNeeded, @Nullable String outputPath, int dexFlags, in dexopt() argument
619 BlockGuard.getVmPolicy().onPathAccess(outputPath); in dexopt()
623 return mInstalld.dexopt(apkPath, uid, pkgName, instructionSet, dexoptNeeded, outputPath, in dexopt()
829 public void moveAb(String packageName, String apkPath, String instructionSet, String outputPath) in moveAb() argument
833 BlockGuard.getVmPolicy().onPathAccess(outputPath); in moveAb()
835 mInstalld.moveAb(packageName, apkPath, instructionSet, outputPath); in moveAb()
846 String outputPath) throws InstallerException { in deleteOdex() argument
849 BlockGuard.getVmPolicy().onPathAccess(outputPath); in deleteOdex()
851 return mInstalld.deleteOdex(packageName, apkPath, instructionSet, outputPath); in deleteOdex()
1120 String outputPath) throws InstallerException { in getOdexVisibility() argument
[all …]
DOtaDexoptService.java294 String instructionSet, int dexoptNeeded, @Nullable String outputPath, in generatePackageDexopts()
312 encodeParameter(builder, outputPath); in generatePackageDexopts()
/frameworks/native/cmds/installd/binder/android/os/
DIInstalld.aidl63 @nullable @utf8InCpp String outputPath, int dexFlags, in dexopt() argument
100 @utf8InCpp String instructionSet, @utf8InCpp String outputPath); in moveAb() argument
102 @utf8InCpp String instructionSet, @nullable @utf8InCpp String outputPath); in deleteOdex() argument
135 @utf8InCpp String instructionSet, @nullable @utf8InCpp String outputPath); in getOdexVisibility() argument
/frameworks/wilhelm/tests/examples/
DslesTestDecodeAac.cpp442 char* outputPath = (char*) malloc(len + 4 + 1); // save room to concatenate ".raw" in TestDecToBuffQueue() local
443 if (NULL == outputPath) { in TestDecToBuffQueue()
446 memcpy(outputPath, path, len + 1); in TestDecToBuffQueue()
447 strcat(outputPath, ".raw"); in TestDecToBuffQueue()
448 outputFp = fopen(outputPath, "w"); in TestDecToBuffQueue()
451 perror(outputPath); in TestDecToBuffQueue()
453 free(outputPath); in TestDecToBuffQueue()
DslesTestDecodeToBuffQueue.cpp265 char* outputPath = (char*) malloc(len + 4 + 1); // save room to concatenate ".raw" in TestDecToBuffQueue() local
266 if (NULL == outputPath) { in TestDecToBuffQueue()
269 memcpy(outputPath, path, len + 1); in TestDecToBuffQueue()
270 strcat(outputPath, ".raw"); in TestDecToBuffQueue()
271 gFp = fopen(outputPath, "w"); in TestDecToBuffQueue()
/frameworks/layoutlib/validator/src/
DResourceConverter.java49 private static void writeStrings(Map<String, String> map, String outputPath) throws Exception { in writeStrings() argument
50 File output = new File(outputPath); in writeStrings()
/frameworks/av/media/tests/SampleVideoEncoder/app/src/main/java/com/android/media/samplevideoencoder/
DMediaCodecSurfaceEncoder.java71 String outputPath, int maxBFrames) { in MediaCodecSurfaceEncoder() argument
76 mOutputPath = outputPath; in MediaCodecSurfaceEncoder()
81 String outputPath) { in MediaCodecSurfaceEncoder() argument
83 this(context, resId, mime, isSoftware, outputPath, 1); in MediaCodecSurfaceEncoder()
/frameworks/native/cmds/installd/
DInstalldNativeService.h119 const std::optional<std::string>& outputPath, int32_t dexFlags,
162 const std::string& instructionSet, const std::string& outputPath);
165 const std::optional<std::string>& outputPath, int64_t* _aidl_return);
192 const std::optional<std::string>& outputPath,
DInstalldNativeService.cpp3072 const std::optional<std::string>& outputPath, int32_t dexFlags, in dexopt() argument
3083 CHECK_ARGUMENT_PATH(outputPath); in dexopt()
3088 const char* oat_dir = getCStr(outputPath); in dexopt()
3385 const std::string& outputPath) { in moveAb() argument
3389 CHECK_ARGUMENT_PATH(outputPath); in moveAb()
3394 const char* oat_dir = outputPath.c_str(); in moveAb()
3403 const std::optional<std::string>& outputPath, in deleteOdex() argument
3408 CHECK_ARGUMENT_PATH(outputPath); in deleteOdex()
3413 const char* oat_dir = outputPath ? outputPath->c_str() : nullptr; in deleteOdex()
3763 const std::string& instructionSet, const std::optional<std::string>& outputPath, in getOdexVisibility() argument
[all …]
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/unit/
DExifInterfaceTest.java170 String outputPath = new File(Environment.getExternalStorageDirectory(), in setUp() local
174 try (FileOutputStream outputStream = new FileOutputStream(outputPath)) { in setUp()
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
DCameraStreamer.java1448 public void createRecorder(String outputPath, CamcorderProfile profile) { in createRecorder() argument
1459 mRecorder.setOutputFile(outputPath); in createRecorder()
/frameworks/base/tools/aapt/
DCommand.cpp2839 String8 outputPath = buildApkName(String8(outputAPKFile), split); in doPackage() local
2840 err = writeAPK(bundle, outputPath, split); in doPackage()
2842 fprintf(stderr, "ERROR: packaging of '%s' failed\n", outputPath.string()); in doPackage()