Home
last modified time | relevance | path

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

/build/soong/java/
Dhiddenapi_singleton.go191 tempPath := android.PathForOutput(ctx, outputPath.Rel()+".tmp")
203 FlagWithOutput("--out-api-flags=", tempPath)
205 commitChangeForRestat(rule, tempPath, outputPath)
242 tempPath := android.PathForOutput(ctx, outputPath.Rel()+".tmp")
263 FlagWithOutput("--output ", tempPath)
265 commitChangeForRestat(rule, tempPath, outputPath)
317 func commitChangeForRestat(rule *android.RuleBuilder, tempPath, outputPath android.WritablePath) { argument
319 rule.Temporary(tempPath)
323 Text("cmp -s").Input(tempPath).Output(outputPath).Text(";").
325 Text("rm").Input(tempPath).Text(";").
[all …]
Dsdk.go532 tempPath := combinedAidl.ReplaceExtension(ctx, "aidl.tmp")
534 rule := createFrameworkAidl(stubsModules, tempPath, ctx)
536 commitChangeForRestat(rule, tempPath, combinedAidl)
546 tempPath := combinedAidl.ReplaceExtension(ctx, "aidl.tmp")
548 rule := createFrameworkAidl(stubsModules, tempPath, ctx)
550 commitChangeForRestat(rule, tempPath, combinedAidl)
/build/soong/cmd/sbox/
Dsbox.go219 tempPath := filepath.Join(tempDir, filePath)
220 fileInfo, err := os.Stat(tempPath)
263 tempPath := filepath.Join(tempDir, filePath)
276 err = os.Chtimes(tempPath, now, now)
281 err = os.Rename(tempPath, destPath)
/build/soong/ui/metrics/
Dmetrics.go171 tempPath := outputPath + ".tmp"
172 err = ioutil.WriteFile(tempPath, []byte(data), 0644)
176 err = os.Rename(tempPath, outputPath)
/build/soong/shared/
Dpaths.go24 func TempDirForOutDir(outDir string) (tempPath string) {
/build/soong/ui/status/
Dlog.go260 tempPath := outputPath + ".tmp"
261 err = ioutil.WriteFile(tempPath, []byte(data), 0644)
266 err = os.Rename(tempPath, outputPath)
/build/soong/finder/
Dfinder.go1155 tempPath := f.DbPath + ".tmp"
1164 err = f.filesystem.WriteFile(tempPath, bytes, 0777)
1168 err = f.filesystem.Rename(tempPath, f.DbPath)