/frameworks/base/services/core/java/com/android/server/pm/ |
D | Installer.java | 304 int dexoptNeeded, @Nullable String outputPath, int dexFlags, in dexopt() argument 311 BlockGuard.getVmPolicy().onPathAccess(outputPath); in dexopt() 315 mInstalld.dexopt(apkPath, uid, pkgName, instructionSet, dexoptNeeded, outputPath, in dexopt() 492 public void moveAb(String apkPath, String instructionSet, String outputPath) in moveAb() argument 496 BlockGuard.getVmPolicy().onPathAccess(outputPath); in moveAb() 498 mInstalld.moveAb(apkPath, instructionSet, outputPath); in moveAb() 504 public void deleteOdex(String apkPath, String instructionSet, String outputPath) in deleteOdex() argument 508 BlockGuard.getVmPolicy().onPathAccess(outputPath); in deleteOdex() 510 mInstalld.deleteOdex(apkPath, instructionSet, outputPath); in deleteOdex()
|
D | OtaDexoptService.java | 279 String instructionSet, int dexoptNeeded, @Nullable String outputPath, in generatePackageDexopts() 297 encodeParameter(builder, outputPath); in generatePackageDexopts()
|
/frameworks/wilhelm/tests/examples/ |
D | slesTestDecodeAac.cpp | 442 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()
|
D | slesTestDecodeToBuffQueue.cpp | 265 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/native/cmds/installd/binder/android/os/ |
D | IInstalld.aidl | 51 @nullable @utf8InCpp String outputPath, int dexFlags, in dexopt() argument 87 @utf8InCpp String outputPath); in moveAb() argument 89 @nullable @utf8InCpp String outputPath); in deleteOdex() argument
|
/frameworks/native/cmds/installd/ |
D | InstalldNativeService.h | 94 int32_t dexoptNeeded, const std::unique_ptr<std::string>& outputPath, int32_t dexFlags, 135 const std::string& outputPath); 137 const std::unique_ptr<std::string>& outputPath);
|
D | InstalldNativeService.cpp | 2093 int32_t dexoptNeeded, const std::unique_ptr<std::string>& outputPath, int32_t dexFlags, in dexopt() argument 2106 CHECK_ARGUMENT_PATH(outputPath); in dexopt() 2113 const char* oat_dir = getCStr(outputPath); in dexopt() 2554 const std::string& instructionSet, const std::string& outputPath) { in moveAb() argument 2557 CHECK_ARGUMENT_PATH(outputPath); in moveAb() 2562 const char* oat_dir = outputPath.c_str(); in moveAb() 2569 const std::string& instructionSet, const std::unique_ptr<std::string>& outputPath) { in deleteOdex() argument 2572 CHECK_ARGUMENT_PATH(outputPath); in deleteOdex() 2577 const char* oat_dir = outputPath ? outputPath->c_str() : nullptr; in deleteOdex()
|
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/unit/ |
D | ExifInterfaceTest.java | 170 String outputPath = new File(Environment.getExternalStorageDirectory(), in setUp() local 174 try (FileOutputStream outputStream = new FileOutputStream(outputPath)) { in setUp()
|
/frameworks/base/core/java/com/android/internal/os/ |
D | ZygoteInit.java | 664 final String outputPath = null; in performSystemServerDexOpt() local 674 instructionSet, dexoptNeeded, outputPath, dexFlags, compilerFilter, in performSystemServerDexOpt()
|
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/ |
D | CameraStreamer.java | 1448 public void createRecorder(String outputPath, CamcorderProfile profile) { in createRecorder() argument 1459 mRecorder.setOutputFile(outputPath); in createRecorder()
|
/frameworks/base/tools/aapt/ |
D | Command.cpp | 2761 String8 outputPath = buildApkName(String8(outputAPKFile), split); in doPackage() local 2762 err = writeAPK(bundle, outputPath, split); in doPackage() 2764 fprintf(stderr, "ERROR: packaging of '%s' failed\n", outputPath.string()); in doPackage()
|