Home
last modified time | relevance | path

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

/build/soong/java/
Dhiddenapi_singleton.go177 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 …]
Dsdk.go296 tempPath := combinedAidl.ReplaceExtension(ctx, "aidl.tmp")
299 Text("rm -f").Output(tempPath)
304 Output(tempPath)
306 commitChangeForRestat(rule, tempPath, combinedAidl)
/build/soong/cmd/sbox/
Dsbox.go216 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/
Dmetrics.go150 tempPath := outputPath + ".tmp"
151 err = ioutil.WriteFile(tempPath, []byte(data), 0777)
155 err = os.Rename(tempPath, outputPath)
/build/soong/shared/
Dpaths.go24 func TempDirForOutDir(outDir string) (tempPath string) {
/build/soong/finder/
Dfinder.go1154 tempPath := f.DbPath + ".tmp"
1163 err = f.filesystem.WriteFile(tempPath, bytes, 0777)
1167 err = f.filesystem.Rename(tempPath, f.DbPath)