Lines Matching refs:outPath
226 String outPath = currentDir + File.separator + TMP_FOLDER_NAME;
228 unpackHap(packageName, outPath);
230 suffixResult.setPathList(getPathListData(outPath, packageName, soList));
231 List<ParamModelSuffix> resulList = setMapData(outPath, fileList, soList);
232 File deleteFile = new File(outPath);
249 private List<String> getPathListData(String outPath, String packageName, ArrayList<String> soList) {
251 FileUtils.getFileList(outPath, soList);
262 private List<ParamModelSuffix> setMapData(String outPath, List<String> fileList, ArrayList<String> soList) {
292 File deleteFile = new File(outPath);
494 private static void unpackHap(String srcPath, String outPath) throws BundleException {
497 File destDir = new File(outPath);
501 unpackEntryToFile(zipInputStream, outPath);
508 private static void unpackEntryToFile(ZipInputStream zipInputStream, String outPath)
513 File entryFile = new File(outPath, entryName);