• Home
  • Raw
  • Download

Lines Matching refs:android

80 	CpuVariant             map[android.ArchType]string // cpu variant for each architecture
81 InstructionSetFeatures map[android.ArchType]string // instruction set for each architecture
84 DirtyImageObjects android.OptionalPath // path to a dirty-image-objects file
85 PreloadedClasses android.OptionalPath // path to a preloaded-classes file
86 BootImageProfiles android.Paths // path to a boot-image-profile.txt file
98 Profman android.Path
99 Dex2oat android.Path
100 Aapt android.Path
101 SoongZip android.Path
102 Zip2zip android.Path
104 VerifyUsesLibraries android.Path
105 ConstructContext android.Path
111 BuildPath android.OutputPath
112 DexPath android.Path
117 ProfileClassListing android.OptionalPath
123 LibraryPaths map[string]android.Path
125 Archs []android.ArchType
126 DexPreoptImages []android.Path
128 PreoptBootClassPathDexFiles android.Paths // file paths of boot class path files
139 StripInputPath android.Path
140 StripOutputPath android.WritablePath
143 func constructPath(ctx android.PathContext, path string) android.Path {
148 return android.PathForOutput(ctx, strings.TrimPrefix(path, buildDirPrefix))
150 return android.PathForSource(ctx, path)
154 func constructPaths(ctx android.PathContext, paths []string) android.Paths {
155 var ret android.Paths
162 func constructPathMap(ctx android.PathContext, paths map[string]string) map[string]android.Path {
163 ret := map[string]android.Path{}
170 func constructWritablePath(ctx android.PathContext, path string) android.WritablePath {
174 return constructPath(ctx, path).(android.WritablePath)
179 func LoadGlobalConfig(ctx android.PathContext, path string) (GlobalConfig, error) {
208 …config.GlobalConfig.DirtyImageObjects = android.OptionalPathForPath(constructPath(ctx, config.Dirt…
209 …config.GlobalConfig.PreloadedClasses = android.OptionalPathForPath(constructPath(ctx, config.Prelo…
226 func LoadModuleConfig(ctx android.PathContext, path string) (ModuleConfig, error) {
250 config.ModuleConfig.BuildPath = constructPath(ctx, config.BuildPath).(android.OutputPath)
252 …config.ModuleConfig.ProfileClassListing = android.OptionalPathForPath(constructPath(ctx, config.Pr…
262 func loadConfig(ctx android.PathContext, path string, config interface{}) error {
282 func GlobalConfigForTests(ctx android.PathContext) GlobalConfig {
319 DirtyImageObjects: android.OptionalPath{},
320 PreloadedClasses: android.OptionalPath{},
327 Profman: android.PathForTesting("profman"),
328 Dex2oat: android.PathForTesting("dex2oat"),
329 Aapt: android.PathForTesting("aapt"),
330 SoongZip: android.PathForTesting("soong_zip"),
331 Zip2zip: android.PathForTesting("zip2zip"),
332 VerifyUsesLibraries: android.PathForTesting("verify_uses_libraries.sh"),
333 ConstructContext: android.PathForTesting("construct_context.sh"),