Searched refs:tempPath (Results 1 – 7 of 7) sorted by relevance
/aosp12/build/soong/java/ |
H A D | hiddenapi_singleton.go | 217 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 D | sdk.go | 264 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 D | hiddenapi_modular.go | 304 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 D | log.go | 260 tempPath := outputPath + ".tmp" 261 err = ioutil.WriteFile(tempPath, []byte(data), 0644) 266 err = os.Rename(tempPath, outputPath)
|
/aosp12/build/soong/shared/ |
H A D | paths.go | 49 func TempDirForOutDir(outDir string) (tempPath string) {
|
/aosp12/frameworks/base/core/java/android/accessibilityservice/ |
H A D | GestureDescription.java | 296 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 D | finder.go | 1158 tempPath := f.DbPath + ".tmp" 1167 err = f.filesystem.WriteFile(tempPath, bytes, 0777) 1171 err = f.filesystem.Rename(tempPath, f.DbPath)
|