Home | History | Annotate | Download | only in cc

Lines Matching refs:missing

27 	// Add flags to ignore warnings that profiles are old or missing for
49 func recordMissingProfileFile(ctx BaseModuleContext, missing string) {
50 getNamedMapForConfig(ctx.Config(), modulesMissingProfileFile).Store(missing, true)
135 missing := *props.Pgo.Profile_file + ":" + ctx.ModuleDir() + "/Android.bp:" + ctx.ModuleName()
136 recordMissingProfileFile(ctx, missing)
199 var missing []string
201 missing = append(missing, "profile kind (either \"instrumentation\" or \"sampling\" property)")
204 missing = append(missing, "profile_file property")
207 missing = append(missing, "non-empty benchmarks property")
209 missingProps := strings.Join(missing, ", ")
210 ctx.ModuleErrorf("PGO specification is missing properties: " + missingProps)