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