Searched refs:apkPathFile (Results 1 – 5 of 5) sorted by relevance
61 File apkPathFile = getAppFile(TEST_PACKAGENAME); in getDexList() local62 assertThat(apkPathFile.exists()).isTrue(); in getDexList()63 Map<File, List<String>> dexList = mDexParser.getDexFilePaths(apkPathFile); in getDexList()65 assertWithMessage("Dex list should not be empty " + apkPathFile.getAbsolutePath()) in getDexList()72 File apkPathFile = getAppFile(TEST_PACKAGENAME); in resultContainsCalledApi() local73 assertThat(apkPathFile.exists()).isTrue(); in resultContainsCalledApi()74 Map<File, List<String>> dexList = mDexParser.getDexFilePaths(apkPathFile); in resultContainsCalledApi()93 File apkPathFile = getAppFile(TEST_PACKAGENAME); in resultDoesNotContainAbsentApi() local94 assertThat(apkPathFile.exists()).isTrue(); in resultDoesNotContainAbsentApi()95 Map<File, List<String>> dexList = mDexParser.getDexFilePaths(apkPathFile); in resultDoesNotContainAbsentApi()[all …]
146 public Map<File, List<String>> getDexFilePaths(File apkPathFile) throws IOException { in getDexFilePaths() argument
45 public Map<File, List<String>> getDexFilePaths(File apkPathFile) throws IOException { in getDexFilePaths() argument49 if (apkPathFile.isDirectory()) { in getDexFilePaths()50 for (File apkFile : apkPathFile.listFiles()) { in getDexFilePaths()56 apkList.add(apkPathFile); in getDexFilePaths()
52 File apkPathFile, String packagename, VerificationHandler verificationHandler) { in queueApkToLoad() argument58 dexEntries = mParser.getDexFilePaths(apkPathFile); in queueApkToLoad()
39 Map<File, List<String>> getDexFilePaths(File apkPathFile) throws IOException; in getDexFilePaths() argument