Home
last modified time | relevance | path

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

/aosp12/frameworks/base/core/java/com/android/internal/content/
H A DNativeLibraryHelper.java21 import static android.content.pm.PackageManager.NO_NATIVE_LIBRARIES;
216 int finalRes = NO_NATIVE_LIBRARIES; in findSupportedAbi()
219 if (res == NO_NATIVE_LIBRARIES) { in findSupportedAbi()
384 int copyRet = PackageManager.NO_NATIVE_LIBRARIES; in copyNativeBinariesWithOverride()
389 if (copyRet < 0 && copyRet != PackageManager.NO_NATIVE_LIBRARIES && in copyNativeBinariesWithOverride()
400 if (copyRet < 0 && copyRet != PackageManager.NO_NATIVE_LIBRARIES && in copyNativeBinariesWithOverride()
423 if (copyRet < 0 && copyRet != PackageManager.NO_NATIVE_LIBRARIES) { in copyNativeBinariesWithOverride()
/aosp12/frameworks/base/services/core/java/com/android/server/pm/
H A DPackageAbiHelperImpl.java127 if (copyRet != PackageManager.NO_NATIVE_LIBRARIES in maybeThrowExceptionForMultiArchCopy()
336 int abi32 = PackageManager.NO_NATIVE_LIBRARIES; in derivePackageAbi()
337 int abi64 = PackageManager.NO_NATIVE_LIBRARIES; in derivePackageAbi()
438 if (copyRet < 0 && copyRet != PackageManager.NO_NATIVE_LIBRARIES) { in derivePackageAbi()
450 } else if (copyRet == PackageManager.NO_NATIVE_LIBRARIES in derivePackageAbi()
/aosp12/frameworks/base/core/jni/
H A Dcom_android_internal_content_NativeLibraryHelper.cpp66 NO_NATIVE_LIBRARIES = -114 enumerator
453 int status = NO_NATIVE_LIBRARIES; in findSupportedAbi()
458 if (status == NO_NATIVE_LIBRARIES) { in findSupportedAbi()
/aosp12/frameworks/base/core/java/android/content/pm/
H A DPackageManager.java1852 public static final int NO_NATIVE_LIBRARIES = -114; field in PackageManager