Home
last modified time | relevance | path

Searched refs:ARCH_TO_ABIS (Results 1 – 1 of 1) sorted by relevance

/tools/tradefederation/core/common_util/com/android/tradefed/util/
DAbiUtils.java77 private static final Map<String, Set<String>> ARCH_TO_ABIS = field in AbiUtils
102 ARCH_TO_ABIS.put(BASE_ARCH_ARM, ARM_ABIS); in ARCH_TO_ABIS.put()
103 ARCH_TO_ABIS.put(ARCH_ARM64, ARM_ABIS); in ARCH_TO_ABIS.put()
104 ARCH_TO_ABIS.put(BASE_ARCH_X86, INTEL_ABIS); in ARCH_TO_ABIS.put()
105 ARCH_TO_ABIS.put(ARCH_X86_64, INTEL_ABIS); in ARCH_TO_ABIS.put()
106 ARCH_TO_ABIS.put(BASE_ARCH_MIPS, MIPS_ABIS); in ARCH_TO_ABIS.put()
107 ARCH_TO_ABIS.put(ARCH_MIPS64, MIPS_ABIS); in ARCH_TO_ABIS.put()
146 if (arch == null || arch.isEmpty() || !ARCH_TO_ABIS.containsKey(arch)) { in getAbisForArch()
149 return new LinkedHashSet<String>(ARCH_TO_ABIS.get(arch)); in getAbisForArch()