Home
last modified time | relevance | path

Searched refs:afdo (Results 1 – 8 of 8) sorted by relevance

/build/soong/cc/
Dafdo.go56 type afdo struct { struct
60 func (afdo *afdo) props() []interface{} { argument
61 return []interface{}{&afdo.Properties}
64 func (afdo *afdo) AfdoEnabled() bool { argument
65 return afdo != nil && afdo.Properties.Afdo && afdo.Properties.AfdoTarget != nil
97 func (afdo *afdo) begin(ctx BaseModuleContext) { argument
104 if afdo.Properties.Afdo {
106 if afdo.Properties.GetAfdoProfileFile(ctx, module).Valid() {
107 afdo.Properties.AfdoTarget = proptools.StringPtr(module)
112 func (afdo *afdo) flags(ctx ModuleContext, flags Flags) Flags { argument
[all …]
DOWNERS3 per-file afdo.go,afdo_test.go,lto.go,pgo.go = srhines@google.com, pirama@google.com, yikong@google.…
Dafdo_test.go30 afdo: true,
DAndroid.bp22 "afdo.go",
Dcc.go823 afdo *afdo member
1153 if c.afdo != nil {
1154 c.AddProperties(c.afdo.props()...)
1275 if afdo := c.afdo; afdo != nil {
1276 return afdo.Properties.AfdoTarget != nil
1664 module.afdo = &afdo{}
1863 if c.afdo != nil {
1864 flags = c.afdo.flags(ctx, flags)
1993 if c.afdo != nil {
1994 c.afdo.begin(ctx)
/build/soong/rust/
Dafdo.go25 type afdo struct { struct
29 func (afdo *afdo) props() []interface{} { argument
30 return []interface{}{&afdo.Properties}
33 func (afdo *afdo) flags(ctx ModuleContext, flags Flags, deps PathDeps) (Flags, PathDeps) { argument
38 if afdo != nil && afdo.Properties.Afdo {
39 if profileFile := afdo.Properties.GetAfdoProfileFile(ctx, ctx.ModuleName()); profileFile.Valid() {
DAndroid.bp17 "afdo.go",
Drust.go152 afdo *afdo member
709 if mod.afdo != nil {
710 mod.AddProperties(mod.afdo.props()...)
743 module.afdo = &afdo{}
871 if mod.afdo != nil {
872 flags, deps = mod.afdo.flags(ctx, flags, deps)