Lines Matching refs:GlobalSoongConfig
92 type GlobalSoongConfig struct { struct
371 func createGlobalSoongConfig(ctx android.ModuleContext) *GlobalSoongConfig {
379 return &GlobalSoongConfig{
404 func GetGlobalSoongConfig(ctx android.ModuleContext) *GlobalSoongConfig {
407 }).(*GlobalSoongConfig)
425 func GetCachedGlobalSoongConfig(ctx android.PathContext) *GlobalSoongConfig {
427 return (*GlobalSoongConfig)(nil)
428 }).(*GlobalSoongConfig)
444 func ParseGlobalSoongConfig(ctx android.PathContext, data []byte) (*GlobalSoongConfig, error) {
449 return &GlobalSoongConfig{}, err
452 config := &GlobalSoongConfig{
566 func GlobalSoongConfigForTests(config android.Config) *GlobalSoongConfig {
570 return &GlobalSoongConfig{
579 }).(*GlobalSoongConfig)