Home
last modified time | relevance | path

Searched refs:inputPath (Results 1 – 8 of 8) sorted by relevance

/aosp12/build/soong/android/
H A Dmakefile_goal.go49 func (p *makefileGoal) inputPath() *string { function
66 if p.inputPath() == nil {
72 filename := filepath.Base(proptools.String(p.inputPath()))
85 …fmt.Fprintf(w, "$(eval $(call copy-one-file,%s,%s))\n", proptools.String(p.inputPath()), p.outputF…
H A Dbazel_handler.go743 for _, inputPath := range buildStatement.InputPaths {
744 cmd.Implicit(PathForBazelOut(ctx, inputPath))
/aosp12/build/soong/java/
H A Dhiddenapi_singleton.go184inputPath := android.PathForSource(ctx, ctx.Config().PrebuiltHiddenApiDir(ctx), "hiddenapi-flags.c…
189 Input: inputPath,
195inputPath := android.PathForSource(ctx, ctx.Config().PrebuiltHiddenApiDir(ctx), "hiddenapi-index.c…
200 Input: inputPath,
H A Dapp_import.go176 ctx android.ModuleContext, inputPath android.Path, outputPath android.OutputPath) {
183 Input: inputPath,
189 Textf(`if (zipinfo %s 'lib/*.so' 2>/dev/null | grep -v ' stor ' >/dev/null) ; then`, inputPath).
191 FlagWithInput("-i ", inputPath).
194 Textf(`; else cp -f %s %s; fi`, inputPath, outputPath)
213 ctx android.ModuleContext, inputPath android.Path, outputPath android.OutputPath) {
216 Textf(`if (zipinfo %s '*.dex' 2>/dev/null | grep -v ' stor ' >/dev/null) ; then`, inputPath).
218 FlagWithInput("-i ", inputPath).
221 Textf(`; else cp -f %s %s; fi`, inputPath, outputPath)
H A Dplatform_compat_config.go298 inputPath := platformCompatConfigPath(ctx)
306 Input: inputPath,
/aosp12/build/soong/cc/
H A Dlibrary_sdk_member.go275 inputPath := path.String()
280 targetRelativePath := inputPath
285 targetRelativePath = android.Rel(sdkModuleContext, base.String(), inputPath)
295 headers, _ := sdkModuleContext.GlobWithDeps(inputPath+"/**/*.h", nil)
301 inputRelativePath := android.Rel(sdkModuleContext, inputPath, file)
/aosp12/packages/apps/Camera2/src/com/android/camera/
H A DStorage.java317 public boolean renameFile(File inputPath, File newFilePath) { in renameFile() argument
322 if (inputPath.isDirectory()) { in renameFile()
323 Log.e(TAG, "Input path is directory: " + inputPath.getAbsolutePath()); in renameFile()
331 return inputPath.renameTo(newFilePath); in renameFile()
/aosp12/build/soong/bazel/
H A Daquery.go166 inputPath, exists := artifactIdToPath[inputId]
170 inputPaths = append(inputPaths, inputPath)