Searched refs:LIB_DIR_NAME (Results 1 – 4 of 4) sorted by relevance
24 import static com.android.internal.content.NativeLibraryHelper.LIB_DIR_NAME;164 final String libDir = is64Bit ? LIB64_DIR_NAME : LIB_DIR_NAME; in getNativeLibraryPaths()169 final String secondaryLibDir = is64Bit ? LIB_DIR_NAME : LIB64_DIR_NAME; in getNativeLibraryPaths()186 nativeLibraryRootDir = new File(codeFile, LIB_DIR_NAME).getAbsolutePath(); in getNativeLibraryPaths()234 has32BitLibs = (new File(apkRoot, new File(LIB_DIR_NAME, apkName).getPath())).exists(); in getBundledAppAbi()237 final File rootDir = new File(codeFile, LIB_DIR_NAME); in getBundledAppAbi()
1715 new File(packageInstallDir, NativeLibraryHelper.LIB_DIR_NAME), in validateApkInstallLocked()1952 final File libDir = new File(packageDir, NativeLibraryHelper.LIB_DIR_NAME); in extractNativeLibraries()
97 import static com.android.internal.content.NativeLibraryHelper.LIB_DIR_NAME;3491 final File libraryRoot = new File(dstCodePath, LIB_DIR_NAME);15287 final File libraryRoot = new File(codeFile, LIB_DIR_NAME);
59 public static final String LIB_DIR_NAME = "lib"; field in NativeLibraryHelper