Lines Matching refs:apiScope

50 func initHiddenAPIScope(apiScope *HiddenAPIScope) *HiddenAPIScope {
51 sdkKind := apiScope.sdkKind
65 apiScope.nonUpdatableSourceModule = fmt.Sprintf("%s.stubs%s", nonUpdatableModule, insert)
72 apiScope.nonUpdatablePrebuiltModule = prebuiltModuleName(nonUpdatableModule, kindAsString)
75 return apiScope
175 apiScope *HiddenAPIScope member
271 for _, apiScope := range hiddenAPIScopes {
272 modules := apiScopeToStubLibModules[apiScope]
273 ctx.AddDependency(module, hiddenAPIStubsDependencyTag{apiScope: apiScope}, modules...)
326 for _, apiScope := range hiddenAPIFlagScopes {
331 paths = append(paths, input.DependencyStubDexJarsByScope.StubDexJarsForScope(apiScope)...)
332 paths = append(paths, input.AdditionalStubDexJarsByScope.StubDexJarsForScope(apiScope)...)
333 paths = append(paths, input.StubDexJarsByScope.StubDexJarsForScope(apiScope)...)
335 option := apiScope.hiddenAPIListOption
571 apiScope := hiddenAPIScopes[i]
572 if stubsForAPIScope, ok := s[apiScope]; ok {
719 addFromModule := func(ctx android.ModuleContext, module android.Module, apiScope *HiddenAPIScope) {
720 sdkKind := apiScope.sdkKind
723 i.StubDexJarsByScope.addStubDexJar(ctx, module, apiScope, dexJar)
736 for _, apiScope := range hiddenAPISdkLibrarySupportedScopes {
737 addFromModule(ctx, module, apiScope)
745 apiScope := hiddenAPIStubsTag.apiScope
747 dexJar := hiddenAPIRetrieveDexJarBuildPath(ctx, module, apiScope.sdkKind)
749 i.AdditionalStubDexJarsByScope.addStubDexJar(ctx, module, apiScope, dexJar)
752 addFromModule(ctx, module, apiScope)