Searched refs:tempPath (Results 1 – 6 of 6) sorted by relevance
/build/soong/java/ |
D | hiddenapi_singleton.go | 177 tempPath := android.PathForOutput(ctx, outputPath.Rel()+".tmp") 189 FlagWithOutput("--out-api-flags=", tempPath) 191 commitChangeForRestat(rule, tempPath, outputPath) 221 tempPath := android.PathForOutput(ctx, outputPath.Rel()+".tmp") 241 FlagWithOutput("--output ", tempPath) 243 commitChangeForRestat(rule, tempPath, outputPath) 296 func commitChangeForRestat(rule *android.RuleBuilder, tempPath, outputPath android.WritablePath) { argument 298 rule.Temporary(tempPath) 302 Text("cmp -s").Input(tempPath).Output(outputPath).Text(";"). 304 Text("rm").Input(tempPath).Text(";"). [all …]
|
D | sdk.go | 296 tempPath := combinedAidl.ReplaceExtension(ctx, "aidl.tmp") 299 Text("rm -f").Output(tempPath) 304 Output(tempPath) 306 commitChangeForRestat(rule, tempPath, combinedAidl)
|
/build/soong/cmd/sbox/ |
D | sbox.go | 216 tempPath := filepath.Join(tempDir, filePath) 217 fileInfo, err := os.Stat(tempPath) 260 tempPath := filepath.Join(tempDir, filePath) 273 err = os.Chtimes(tempPath, now, now) 278 err = os.Rename(tempPath, destPath)
|
/build/soong/ui/metrics/ |
D | metrics.go | 150 tempPath := outputPath + ".tmp" 151 err = ioutil.WriteFile(tempPath, []byte(data), 0777) 155 err = os.Rename(tempPath, outputPath)
|
/build/soong/shared/ |
D | paths.go | 24 func TempDirForOutDir(outDir string) (tempPath string) {
|
/build/soong/finder/ |
D | finder.go | 1154 tempPath := f.DbPath + ".tmp" 1163 err = f.filesystem.WriteFile(tempPath, bytes, 0777) 1167 err = f.filesystem.Rename(tempPath, f.DbPath)
|