Lines Matching refs:ModuleConfig
167 type ModuleConfig struct { struct
353 *ModuleConfig anonMember
375 func ParseModuleConfig(ctx android.PathContext, data []byte) (*ModuleConfig, error) {
380 return config.ModuleConfig, err
384 config.ModuleConfig.BuildPath = constructPath(ctx, config.BuildPath).(android.OutputPath)
385 config.ModuleConfig.DexPath = constructPath(ctx, config.DexPath)
386 …config.ModuleConfig.ManifestPath = android.OptionalPathForPath(constructPath(ctx, config.ManifestP…
387 …config.ModuleConfig.ProfileClassListing = android.OptionalPathForPath(constructPath(ctx, config.Pr…
388 …config.ModuleConfig.EnforceUsesLibrariesStatusFile = constructPath(ctx, config.EnforceUsesLibrarie…
389 …config.ModuleConfig.ClassLoaderContexts = fromJsonClassLoaderContext(ctx, config.ClassLoaderContex…
390 …config.ModuleConfig.PreoptBootClassPathDexFiles = constructPaths(ctx, config.PreoptBootClassPathDe…
393 …config.ModuleConfig.DexPreoptImagesDeps = make([]android.OutputPaths, len(config.ModuleConfig.Arch…
395 return config.ModuleConfig, nil
406 func moduleConfigToJSON(config *ModuleConfig) ([]byte, error) { argument
417 ModuleConfig: config,
423 func WriteModuleConfig(ctx android.ModuleContext, config *ModuleConfig, path android.WritablePath) { argument