Lines Matching refs:outputPath
190 outputPath := hiddenAPISingletonPaths(ctx).stubFlags
191 tempPath := android.PathForOutput(ctx, outputPath.Rel()+".tmp")
205 commitChangeForRestat(rule, tempPath, outputPath)
241 outputPath := hiddenAPISingletonPaths(ctx).flags
242 tempPath := android.PathForOutput(ctx, outputPath.Rel()+".tmp")
265 commitChangeForRestat(rule, tempPath, outputPath)
269 return outputPath
277 outputPath := hiddenAPISingletonPaths(ctx).flags
279 rule.Command().Text("rm").Flag("-f").Output(outputPath)
280 rule.Command().Text("touch").Output(outputPath)
284 return outputPath
302 outputPath := hiddenAPISingletonPaths(ctx).metadata
306 FlagWithOutput("--output=", outputPath).
311 return outputPath
317 func commitChangeForRestat(rule *android.RuleBuilder, tempPath, outputPath android.WritablePath) {
323 Text("cmp -s").Input(tempPath).Output(outputPath).Text(";").
327 Text("mv").Input(tempPath).Output(outputPath).Text(";").