Lines Matching refs:utility
74 public boolean scanProcess(Utility utility) { in scanProcess() argument
75 File destFile = new File(utility.getOutPath()); in scanProcess()
85 scanExecute(utility); in scanProcess()
103 …private void scanExecute(Utility utility) throws BundleException, IOException, NoSuchAlgorithmExce… in scanExecute() argument
110 List<String> fileList = getAllInputFileList(utility, targetPath); in scanExecute()
111 if (utility.getStatDuplicate()) { in scanExecute()
113 String duplicateHtml = scanStatDuplicate.statDuplicate(utility, jsonList, fileList); in scanExecute()
116 if (null != utility.getStatFileSize() && !utility.getStatFileSize().isEmpty()) { in scanExecute()
118 String fileSizeHtml = scanStatFileSize.statFileSize(utility, jsonList, fileList); in scanExecute()
121 if (utility.getStatSuffix()) { in scanExecute()
123 String suffixHtml = scanStatSuffix.statSuffix(utility, jsonList, fileList); in scanExecute()
126 if (!((!utility.getStatDuplicate()) && !utility.getStatSuffix() in scanExecute()
127 && EMPTY_STRING.equals(utility.getStatFileSize()))) { in scanExecute()
129 String jsonPath = utility.getOutPath() + LINUX_FILE_SEPARATOR + STAT_JSON; in scanExecute()
130 String htmlPath = utility.getOutPath() + LINUX_FILE_SEPARATOR + STAT_HTML; in scanExecute()
131 String cssPath = utility.getOutPath() + LINUX_FILE_SEPARATOR + STAT_CSS; in scanExecute()
141 …private List<String> getAllInputFileList(Utility utility, String path) throws BundleException, IOE… in getAllInputFileList() argument
143 unpackHap(utility.getInput(), path); in getAllInputFileList()