Lines Matching refs:profile
653 profile, profileInstalls := bootImageProfileRule(ctx, imageConfig)
662 androidBootImageFiles := buildBootImageVariantsForAndroidOs(ctx, imageConfig, profile)
668 buildBootImageVariantsForBuildOs(ctx, imageConfig, profile)
824 func buildBootImageVariantsForAndroidOs(ctx android.ModuleContext, image *bootImageConfig, profile …
825 return buildBootImageForOsType(ctx, image, profile, android.Android)
835 func buildBootImageVariantsForBuildOs(ctx android.ModuleContext, image *bootImageConfig, profile an…
836 buildBootImageForOsType(ctx, image, profile, ctx.Config().BuildOS)
854 profile android.WritablePath member
862 func buildBootImageForOsType(ctx android.ModuleContext, image *bootImageConfig, profile android.Wri…
866 profile: profile,
870 variantOutputs := buildBootImageVariant(ctx, variant, profile)
969 func buildBootImageVariant(ctx android.ModuleContext, image *bootImageVariant, profile android.Path…
1019 if profile != nil {
1020 cmd.FlagWithInput("--profile-file=", profile)
1208 profile := android.PathForModuleOut(ctx, name, "boot.prof")
1217 FlagWithOutput("--reference-profile-file=", profile)
1221 return profile
1239 …profile := bootImageProfileRuleCommon(ctx, image.name, image.dexPathsDeps.Paths(), image.getAnyAnd…
1243 rule.Install(profile, "/system/etc/boot-image.prof")
1244 return profile, rule.Installs()
1246 return profile, nil
1262 profile := image.dir.Join(ctx, "boot.bprof")
1272 FlagWithOutput("--reference-profile-file=", profile)
1274 rule.Install(profile, "/system/etc/boot-image.bprof")
1276 return profile, rule.Installs()