Searched refs:tempPath (Results 1 – 7 of 7) sorted by relevance
/build/soong/java/ |
D | hiddenapi_singleton.go | 191 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 …]
|
D | sdk.go | 532 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/ |
D | sbox.go | 219 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/ |
D | metrics.go | 171 tempPath := outputPath + ".tmp" 172 err = ioutil.WriteFile(tempPath, []byte(data), 0644) 176 err = os.Rename(tempPath, outputPath)
|
/build/soong/shared/ |
D | paths.go | 24 func TempDirForOutDir(outDir string) (tempPath string) {
|
/build/soong/ui/status/ |
D | log.go | 260 tempPath := outputPath + ".tmp" 261 err = ioutil.WriteFile(tempPath, []byte(data), 0644) 266 err = os.Rename(tempPath, outputPath)
|
/build/soong/finder/ |
D | finder.go | 1155 tempPath := f.DbPath + ".tmp" 1164 err = f.filesystem.WriteFile(tempPath, bytes, 0777) 1168 err = f.filesystem.Rename(tempPath, f.DbPath)
|