Lines Matching refs:ModuleConfig
162 type ModuleConfig struct { struct
344 *ModuleConfig anonMember
366 func ParseModuleConfig(ctx android.PathContext, data []byte) (*ModuleConfig, error) {
371 return config.ModuleConfig, err
375 config.ModuleConfig.BuildPath = constructPath(ctx, config.BuildPath).(android.OutputPath)
376 config.ModuleConfig.DexPath = constructPath(ctx, config.DexPath)
377 …config.ModuleConfig.ManifestPath = android.OptionalPathForPath(constructPath(ctx, config.ManifestP…
378 …config.ModuleConfig.ProfileClassListing = android.OptionalPathForPath(constructPath(ctx, config.Pr…
379 …config.ModuleConfig.EnforceUsesLibrariesStatusFile = constructPath(ctx, config.EnforceUsesLibrarie…
380 …config.ModuleConfig.ClassLoaderContexts = fromJsonClassLoaderContext(ctx, config.ClassLoaderContex…
381 …config.ModuleConfig.PreoptBootClassPathDexFiles = constructPaths(ctx, config.PreoptBootClassPathDe…
384 …config.ModuleConfig.DexPreoptImagesDeps = make([]android.OutputPaths, len(config.ModuleConfig.Arch…
386 return config.ModuleConfig, nil
397 func moduleConfigToJSON(config *ModuleConfig) ([]byte, error) { argument
408 ModuleConfig: config,
414 func WriteModuleConfig(ctx android.ModuleContext, config *ModuleConfig, path android.WritablePath) { argument