Home
last modified time | relevance | path

Searched refs:tempPath (Results 1 – 7 of 7) sorted by relevance

/aosp12/build/soong/java/
H A Dhiddenapi_singleton.go217 func commitChangeForRestat(rule *android.RuleBuilder, tempPath, outputPath android.WritablePath) { argument
219 rule.Temporary(tempPath)
223 Text("cmp -s").Input(tempPath).Output(outputPath).Text(";").
225 Text("rm").Input(tempPath).Text(";").
227 Text("mv").Input(tempPath).Output(outputPath).Text(";").
H A Dsdk.go264 tempPath := tempPathForRestat(ctx, combinedAidl)
266 rule := createFrameworkAidl(stubsModules, tempPath, ctx)
268 commitChangeForRestat(rule, tempPath, combinedAidl)
278 tempPath := tempPathForRestat(ctx, combinedAidl)
280 rule := createFrameworkAidl(stubsModules, tempPath, ctx)
282 commitChangeForRestat(rule, tempPath, combinedAidl)
H A Dhiddenapi_modular.go304 tempPath := tempPathForRestat(ctx, outputPath)
341 command.FlagWithOutput("--out-api-flags=", tempPath)
355 commitChangeForRestat(rule, tempPath, outputPath)
862 tempPath := tempPathForRestat(ctx, outputPath)
868 FlagWithOutput("--output ", tempPath)
884 commitChangeForRestat(rule, tempPath, outputPath)
/aosp12/build/soong/ui/status/
H A Dlog.go260 tempPath := outputPath + ".tmp"
261 err = ioutil.WriteFile(tempPath, []byte(data), 0644)
266 err = os.Rename(tempPath, outputPath)
/aosp12/build/soong/shared/
H A Dpaths.go49 func TempDirForOutDir(outDir string) (tempPath string) {
/aosp12/frameworks/base/core/java/android/accessibilityservice/
H A DGestureDescription.java296 Path tempPath = new Path(path); in StrokeDescription() local
297 tempPath.lineTo(-1, -1); in StrokeDescription()
299 PathMeasure pathMeasure = new PathMeasure(tempPath, false); in StrokeDescription()
/aosp12/build/soong/finder/
H A Dfinder.go1158 tempPath := f.DbPath + ".tmp"
1167 err = f.filesystem.WriteFile(tempPath, bytes, 0777)
1171 err = f.filesystem.Rename(tempPath, f.DbPath)