Lines Matching refs:ModuleConfig
162 type ModuleConfig struct { struct
348 *ModuleConfig anonMember
370 func ParseModuleConfig(ctx android.PathContext, data []byte) (*ModuleConfig, error) {
375 return config.ModuleConfig, err
379 config.ModuleConfig.BuildPath = constructPath(ctx, config.BuildPath).(android.OutputPath)
380 config.ModuleConfig.DexPath = constructPath(ctx, config.DexPath)
381 …config.ModuleConfig.ManifestPath = android.OptionalPathForPath(constructPath(ctx, config.ManifestP…
382 …config.ModuleConfig.ProfileClassListing = android.OptionalPathForPath(constructPath(ctx, config.Pr…
383 …config.ModuleConfig.EnforceUsesLibrariesStatusFile = constructPath(ctx, config.EnforceUsesLibrarie…
384 …config.ModuleConfig.ClassLoaderContexts = fromJsonClassLoaderContext(ctx, config.ClassLoaderContex…
385 …config.ModuleConfig.PreoptBootClassPathDexFiles = constructPaths(ctx, config.PreoptBootClassPathDe…
388 …config.ModuleConfig.DexPreoptImagesDeps = make([]android.OutputPaths, len(config.ModuleConfig.Arch…
390 return config.ModuleConfig, nil
401 func moduleConfigToJSON(config *ModuleConfig) ([]byte, error) { argument
412 ModuleConfig: config,
418 func WriteModuleConfig(ctx android.ModuleContext, config *ModuleConfig, path android.WritablePath) { argument