Lines Matching refs:tempPath
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(";").
327 Text("mv").Input(tempPath).Output(outputPath).Text(";").