Lines Matching refs:global
456 global := dexpreopt.GetGlobalConfig(ctx)
457 if !shouldBuildBootImages(ctx.Config(), global) {
468 func shouldBuildBootImages(config android.Config, global *dexpreopt.GlobalConfig) bool {
473 …if len(config.SanitizeDevice()) == 1 && config.SanitizeDevice()[0] == "address" && global.Sanitize…
571 global := dexpreopt.GetGlobalConfig(ctx)
610 Flag("--runtime-arg").FlagWithArg("-Xms", global.Dex2oatImageXms).
611 Flag("--runtime-arg").FlagWithArg("-Xmx", global.Dex2oatImageXmx)
657 FlagWithArg("--android-root=", global.EmptyDirectory).
665 cmd.FlagWithArg("--instruction-set-variant=", global.CpuVariant[arch])
666 cmd.FlagWithArg("--instruction-set-features=", global.InstructionSetFeatures[arch])
669 if global.BootFlags != "" {
670 cmd.Flag(global.BootFlags)
722 global := dexpreopt.GetGlobalConfig(ctx)
724 if global.DisableGenerateProfile {
733 if len(global.BootImageProfiles) > 1 {
735 …rule.Command().Text("cat").Inputs(global.BootImageProfiles).Text(">").Output(combinedBootImageProf…
737 } else if len(global.BootImageProfiles) == 1 {
738 bootImageProfile = global.BootImageProfiles[0]
772 global := dexpreopt.GetGlobalConfig(ctx)
774 if global.DisableGenerateProfile || ctx.Config().UnbundledBuild() {
896 global := dexpreopt.GetGlobalConfig(ctx)
897 dexPaths, dexLocations := bcpForDexpreopt(ctx, global.PreoptWithUpdatableBcp)