/aosp12/build/soong/android/ |
H A D | makefile_goal.go | 42 outputFilePath OutputPath 61 return Paths{p.outputFilePath}, nil 73 p.outputFilePath = PathForModuleOut(ctx, filename).OutputPath 75 ctx.InstallFile(PathForModuleInstall(ctx, "etc"), ctx.ModuleName(), p.outputFilePath) 81 OutputFile: OptionalPathForPath(p.outputFilePath), 85 …intf(w, "$(eval $(call copy-one-file,%s,%s))\n", proptools.String(p.inputPath()), p.outputFilePath)
|
/aosp12/build/soong/linkerconfig/ |
H A D | linkerconfig.go | 57 outputFilePath android.OutputPath member 73 return l.outputFilePath 81 return android.Paths{l.outputFilePath}, nil 95 l.outputFilePath = output 100 ctx.InstallFile(l.installDirPath, l.outputFilePath.Base(), l.outputFilePath) 155 OutputFile: android.OptionalPathForPath(l.outputFilePath), 159 entries.SetString("LOCAL_INSTALLED_MODULE_STEM", l.outputFilePath.Base())
|
H A D | linkerconfig_test.go | 51 if p.outputFilePath.Base() != "linker.config.pb" { 52 t.Errorf("expected linker.config.pb, got %q", p.outputFilePath.Base())
|
/aosp12/system/tools/aidl/build/ |
H A D | aidl_mapping.go | 48 outputFilePath android.WritablePath member 57 s.outputFilePath = android.PathForModuleOut(ctx, s.properties.Output) 62 Output: s.outputFilePath, 87 fmt.Fprintln(w, targetName+":", m.outputFilePath.String())
|
/aosp12/build/soong/sh/ |
H A D | sh_binary.go | 155 outputFilePath android.OutputPath member 182 return s.outputFilePath 246 s.outputFilePath = android.PathForModuleOut(ctx, filename).OutputPath 252 Output: s.outputFilePath, 260 s.installedFile = ctx.InstallExecutable(installDir, s.outputFilePath.Base(), s.outputFilePath) 266 OutputFile: android.OptionalPathForPath(s.outputFilePath), 279 entries.SetString("LOCAL_MODULE_STEM", s.outputFilePath.Rel()) 347 s.installedFile = ctx.InstallExecutable(s.installDir, s.outputFilePath.Base(), s.outputFilePath) 368 …, s.testProperties.Test_suites, configs, s.testProperties.Auto_gen_config, s.outputFilePath.Base()) 415 OutputFile: android.OptionalPathForPath(s.outputFilePath),
|
/aosp12/build/soong/etc/ |
H A D | prebuilt_etc.go | 135 outputFilePath android.OutputPath member 245 return p.outputFilePath 253 return android.Paths{p.outputFilePath}, nil 297 p.outputFilePath = android.PathForModuleOut(ctx, filename).OutputPath 321 Output: p.outputFilePath, 330 installPath := ctx.InstallFile(p.installDirPath, p.outputFilePath.Base(), p.outputFilePath) 353 OutputFile: android.OptionalPathForPath(p.outputFilePath), 358 entries.SetString("LOCAL_INSTALLED_MODULE_STEM", p.outputFilePath.Base())
|
H A D | prebuilt_etc_test.go | 83 android.AssertStringEquals(t, "output file path", "foo.installed.conf", p.outputFilePath.Base()) 100 android.AssertStringEquals(t, "my_foo output file path", "my_foo", p.outputFilePath.Base()) 103 android.AssertStringEquals(t, "my_bar output file path", "bar.conf", p.outputFilePath.Base())
|
/aosp12/system/timezone/input_tools/android/telephonylookup_generator/src/test/java/com/android/libcore/timezone/telephonylookup/ |
H A D | TelephonyLookupGeneratorTest.java | 166 Path outputFilePath = Paths.get(outputFile); in generateTelephonyLookupXml() local 167 assertTrue(Files.exists(outputFilePath)); in generateTelephonyLookupXml() 169 return readFileToString(outputFilePath); in generateTelephonyLookupXml() 196 Path outputFilePath = Paths.get(outputFile); in assertFileIsEmpty() local 197 assertEquals(0, Files.size(outputFilePath)); in assertFileIsEmpty()
|
/aosp12/packages/modules/GeoTZ/data_pipeline/src/test/java/com/android/timezone/location/data_pipeline/steps/createtzs2protodatafile/ |
H A D | CreateTzS2ProtoDataFileTest.java | 64 Path outputFilePath = outputDirPath.resolve("tzs2datafile.prototxt"); in regressionTest() local 68 "--output-file", outputFilePath.toAbsolutePath().toString() in regressionTest() 72 File actualOutputFile = outputFilePath.toFile(); in regressionTest()
|
/aosp12/frameworks/av/media/tests/benchmark/MediaBenchmarkTest/src/main/cpp/ |
H A D | NativeMuxer.cpp | 105 const char *outputFilePath = env->GetStringUTFChars(jOutputFilePath, nullptr); in Java_com_android_media_benchmark_library_Native_Mux() local 106 FILE *outputFp = fopen(((string) outputFilePath).c_str(), "w+b"); in Java_com_android_media_benchmark_library_Native_Mux() 107 env->ReleaseStringUTFChars(jOutputFilePath, outputFilePath); in Java_com_android_media_benchmark_library_Native_Mux()
|
/aosp12/build/soong/java/ |
H A D | platform_compat_config.go | 292 outputFilePath android.OutputPath member 299 c.outputFilePath = android.PathForModuleOut(ctx, filename).OutputPath 305 Output: c.outputFilePath, 313 return android.Paths{h.outputFilePath}, nil
|
H A D | sdk_library.go | 2348 outputFilePath android.OutputPath member 2390 return module.outputFilePath 2439 module.outputFilePath = android.PathForModuleOut(ctx, libName+".xml").OutputPath 2443 Output(module.outputFilePath) 2459 OutputFile: android.OptionalPathForPath(module.outputFilePath), 2464 entries.SetString("LOCAL_INSTALLED_MODULE_STEM", module.outputFilePath.Base())
|
/aosp12/frameworks/av/media/tests/SampleVideoEncoder/app/src/androidTest/java/com/android/media/samplevideoencoder/tests/ |
H A D | SampleVideoEncoderTest.java | 81 String outputFilePath = getOutputPath(); in testMediaSurfaceEncoder() local 84 outputFilePath, mMaxBFrames); in testMediaSurfaceEncoder()
|
/aosp12/frameworks/av/media/tests/benchmark/MediaBenchmarkTest/src/main/java/com/android/media/benchmark/library/ |
H A D | Native.java | 24 public native int Mux(String inputFilePath, String inputFileName, String outputFilePath, in Mux() argument
|
/aosp12/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/mediarecorder/ |
H A D | MediaRecorderTest.java | 412 private void getOutputVideoProperty(String outputFilePath) { in getOutputVideoProperty() argument 415 mediaPlayer.setDataSource(outputFilePath); in getOutputVideoProperty() 416 Log.v(TAG, "file Path = " + outputFilePath); in getOutputVideoProperty()
|
/aosp12/packages/apps/Messaging/src/com/android/messaging/util/ |
H A D | ImageUtils.java | 494 final String outputFilePath = outputFile.getAbsolutePath(); in resizeGifImage() local 497 GifTranscoder.transcode(mContext, inputFilePath, outputFilePath); in resizeGifImage() 503 + outputFilePath, e); in resizeGifImage()
|
/aosp12/build/soong/cc/ |
H A D | library.go | 554 outputFilePath := android.PathForBazelOut(ctx, outputPaths[0]) 555 handler.module.outputFile = android.OptionalPathForPath(outputFilePath) 566 StaticLibrary: outputFilePath, 573 Direct(outputFilePath).
|