Lines Matching refs:ModuleConfig
114 type ModuleConfig struct { struct
268 *ModuleConfig anonMember
290 func ParseModuleConfig(ctx android.PathContext, data []byte) (*ModuleConfig, error) {
295 return config.ModuleConfig, err
299 config.ModuleConfig.BuildPath = constructPath(ctx, config.BuildPath).(android.OutputPath)
300 config.ModuleConfig.DexPath = constructPath(ctx, config.DexPath)
301 …config.ModuleConfig.ManifestPath = android.OptionalPathForPath(constructPath(ctx, config.ManifestP…
302 …config.ModuleConfig.ProfileClassListing = android.OptionalPathForPath(constructPath(ctx, config.Pr…
303 …config.ModuleConfig.EnforceUsesLibrariesStatusFile = constructPath(ctx, config.EnforceUsesLibrarie…
304 …config.ModuleConfig.ClassLoaderContexts = fromJsonClassLoaderContext(ctx, config.ClassLoaderContex…
305 …config.ModuleConfig.PreoptBootClassPathDexFiles = constructPaths(ctx, config.PreoptBootClassPathDe…
308 …config.ModuleConfig.DexPreoptImagesDeps = make([]android.OutputPaths, len(config.ModuleConfig.Arch…
310 return config.ModuleConfig, nil
321 func moduleConfigToJSON(config *ModuleConfig) ([]byte, error) { argument
332 ModuleConfig: config,
338 func WriteModuleConfig(ctx android.ModuleContext, config *ModuleConfig, path android.WritablePath) { argument