Lines Matching refs:ModuleConfig
158 type ModuleConfig struct { struct
342 *ModuleConfig anonMember
364 func ParseModuleConfig(ctx android.PathContext, data []byte) (*ModuleConfig, error) {
369 return config.ModuleConfig, err
373 config.ModuleConfig.BuildPath = constructPath(ctx, config.BuildPath).(android.OutputPath)
374 config.ModuleConfig.DexPath = constructPath(ctx, config.DexPath)
375 …config.ModuleConfig.ManifestPath = android.OptionalPathForPath(constructPath(ctx, config.ManifestP…
376 …config.ModuleConfig.ProfileClassListing = android.OptionalPathForPath(constructPath(ctx, config.Pr…
377 …config.ModuleConfig.EnforceUsesLibrariesStatusFile = constructPath(ctx, config.EnforceUsesLibrarie…
378 …config.ModuleConfig.ClassLoaderContexts = fromJsonClassLoaderContext(ctx, config.ClassLoaderContex…
379 …config.ModuleConfig.PreoptBootClassPathDexFiles = constructPaths(ctx, config.PreoptBootClassPathDe…
382 …config.ModuleConfig.DexPreoptImagesDeps = make([]android.OutputPaths, len(config.ModuleConfig.Arch…
384 return config.ModuleConfig, nil
395 func moduleConfigToJSON(config *ModuleConfig) ([]byte, error) { argument
406 ModuleConfig: config,
412 func WriteModuleConfig(ctx android.ModuleContext, config *ModuleConfig, path android.WritablePath) { argument