Searched refs:ModuleConfig (Results 1 – 5 of 5) sorted by relevance
/build/soong/dexpreopt/ |
D | config.go | 112 type ModuleConfig struct { struct 267 func ParseModuleConfig(ctx android.PathContext, data []byte) (*ModuleConfig, error) { 276 *ModuleConfig 306 return config.ModuleConfig, err 310 config.ModuleConfig.BuildPath = constructPath(ctx, config.BuildPath).(android.OutputPath) 311 config.ModuleConfig.DexPath = constructPath(ctx, config.DexPath) 312 config.ModuleConfig.ManifestPath = constructPath(ctx, config.ManifestPath) 313 …config.ModuleConfig.ProfileClassListing = android.OptionalPathForPath(constructPath(ctx, config.Pr… 314 config.ModuleConfig.LibraryPaths = constructLibraryPaths(ctx, config.LibraryPaths) 315 config.ModuleConfig.DexPreoptImages = constructPaths(ctx, config.DexPreoptImages) [all …]
|
D | dexpreopt_test.go | 23 func testSystemModuleConfig(ctx android.PathContext, name string) *ModuleConfig { 27 func testSystemProductModuleConfig(ctx android.PathContext, name string) *ModuleConfig { 31 func testProductModuleConfig(ctx android.PathContext, name string) *ModuleConfig { 35 func testModuleConfig(ctx android.PathContext, name, partition string) *ModuleConfig { 36 return &ModuleConfig{ 97 module *ModuleConfig
|
D | dexpreopt.go | 56 global *GlobalConfig, module *ModuleConfig) (rule *android.RuleBuilder, err error) { argument 101 func dexpreoptDisabled(ctx android.PathContext, global *GlobalConfig, module *ModuleConfig) bool { argument 126 module *ModuleConfig, rule *android.RuleBuilder) android.WritablePath { argument 165 module *ModuleConfig, rule *android.RuleBuilder) android.WritablePath { argument 229 func (m classLoaderContextMap) addLibs(sdkVer int, module *ModuleConfig, libs ...string) { argument 238 …Map) addSystemServerLibs(sdkVer int, ctx android.PathContext, module *ModuleConfig, libs ...string… argument 247 module *ModuleConfig, rule *android.RuleBuilder, archIdx int, profile android.WritablePath, argument 512 func shouldGenerateDM(module *ModuleConfig, global *GlobalConfig) bool { argument 541 func odexOnSystemOther(module *ModuleConfig, global *GlobalConfig) bool { argument 554 func pathForLibrary(module *ModuleConfig, lib string) *LibraryPath { argument
|
/build/soong/dexpreopt/dexpreopt_gen/ |
D | dexpreopt_gen.go | 137 global *dexpreopt.GlobalConfig, module *dexpreopt.ModuleConfig, dexpreoptScriptPath string) { argument
|
/build/soong/java/ |
D | dexpreopt.go | 182 dexpreoptConfig := &dexpreopt.ModuleConfig{
|