Searched refs:ARCH_TO_ABIS (Results 1 – 1 of 1) sorted by relevance
61 private static final Map<String, Set<String>> ARCH_TO_ABIS = new HashMap<String, Set<String>>(); field in AbiUtils80 ARCH_TO_ABIS.put("arm", ARM_ABIS);81 ARCH_TO_ABIS.put("arm64", ARM_ABIS);82 ARCH_TO_ABIS.put("x86", INTEL_ABIS);83 ARCH_TO_ABIS.put("x86_64", INTEL_ABIS);84 ARCH_TO_ABIS.put("mips", MIPS_ABIS);85 ARCH_TO_ABIS.put("mips64", MIPS_ABIS);103 if (arch == null || arch.isEmpty() || !ARCH_TO_ABIS.containsKey(arch)) { in getAbisForArch()106 return new HashSet<String>(ARCH_TO_ABIS.get(arch)); in getAbisForArch()