Home
last modified time | relevance | path

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

/frameworks/base/core/jni/
Dcom_android_internal_content_NativeLibraryHelper.cpp457 std::vector<ScopedUtfChars> supportedAbis; in findSupportedAbi() local
458 supportedAbis.reserve(numAbis); in findSupportedAbi()
460 supportedAbis.emplace_back(env, (jstring)env->GetObjectArrayElement(supportedAbisArray, i)); in findSupportedAbi()
488 const ScopedUtfChars& abi = supportedAbis[i]; in findSupportedAbi()
/frameworks/base/core/java/com/android/internal/content/
DNativeLibraryHelper.java214 public static int findSupportedAbi(Handle handle, String[] supportedAbis) { in findSupportedAbi() argument
217 final int res = nativeFindSupportedAbi(apkHandle, supportedAbis, handle.debuggable); in findSupportedAbi()
239 private native static int nativeFindSupportedAbi(long handle, String[] supportedAbis, in nativeFindSupportedAbi() argument
/frameworks/base/services/core/java/com/android/server/pm/
DPackageAbiHelperImpl.java317 private static String[] getNativelySupportedAbis(@NonNull String[] supportedAbis) { in getNativelySupportedAbis() argument
319 for (int i = 0; i < supportedAbis.length; i++) { in getNativelySupportedAbis()
320 final String currentAbi = supportedAbis[i]; in getNativelySupportedAbis()
DPackageManagerShellCommand.java3935 final String[] supportedAbis = Build.SUPPORTED_ABIS; in checkAbiArgument() local
3936 for (String supportedAbi : supportedAbis) { in checkAbiArgument()
/frameworks/base/cmds/am/src/com/android/commands/am/
DInstrument.java504 final String[] supportedAbis = Build.SUPPORTED_ABIS; in run() local
506 for (String supportedAbi : supportedAbis) { in run()