Lines Matching defs:entry
203 public static void setEntryModuleSizeLimit(int entry) {
204 entryModuleSizeLimit = entry;
717 ZipEntry entry = entries.nextElement();
718 if (entry != null && hapVerifyInfoMap.containsKey(entry.getName())) {
719 hapVerifyInfoMap.get(entry.getName()).setFileLength(entry.getCompressedSize());
720 hapVerifyInfos.add(hapVerifyInfoMap.get(entry.getName()));
809 for (Map.Entry<String, List<String>> entry : continueBundleNameMap.entrySet()) {
810 List<String> continueBundleNameList = entry.getValue();
850 // check entry module must have ability
2076 LOG.error("isPicturing: the entry card naming format is invalid and should be separated by '-'.");
2491 ZipEntry entry = null;
2495 while ((entry = zin.getNextEntry()) != null) {
2496 if (MODULE_JSON.equals(entry.getName().toLowerCase())) {
2603 * @param entry zip file entry
2606 private boolean jsonSpecialProcess(Utility utility, File srcFile, ZipArchiveEntry entry) {
2649 entry.setCrc(crc.getValue());
2652 entry.setSize(trimJson.length);
2653 entry.setCompressedSize(trimJson.length);
2656 zipOut.putArchiveEntry(entry);
2820 LOG.error("Compressor::closeZipOutputStream close entry io exception " + exception.getMessage());
3467 ZipEntry entry;
3468 while ((entry = zipInputStream.getNextEntry()) != null) {
3469 String entryName = entry.getName();
3472 if (entry.isDirectory()) {