Home
last modified time | relevance | path

Searched refs:newEntry (Results 1 – 12 of 12) sorted by relevance

/libcore/luni/src/test/java/libcore/java/util/zip/
DOldAndroidZipStreamTest.java97 ZipEntry newEntry = new ZipEntry("file-" + i); in createCompressedZip() local
100 newEntry.setComment("this is file " + i); in createCompressedZip()
101 out.putNextEntry(newEntry); in createCompressedZip()
120 ZipEntry newEntry = new ZipEntry("file-" + i); in createUncompressedZip() local
123 newEntry.setComment("this is file " + i); in createUncompressedZip()
124 newEntry.setMethod(ZipEntry.STORED); in createUncompressedZip()
125 newEntry.setSize(128 * 1024); in createUncompressedZip()
126 newEntry.setCrc(crcs[i]); in createUncompressedZip()
127 out.putNextEntry(newEntry); in createUncompressedZip()
DOldAndroidZipFileTest.java84 ZipEntry newEntry = new ZipEntry("file-" + i); in createCompressedZip() local
87 newEntry.setComment("this is file " + i); in createCompressedZip()
89 out.putNextEntry(newEntry); in createCompressedZip()
/libcore/ojluni/src/main/java/sun/util/locale/
DLocaleObjectCache.java67 CacheEntry<K, V> newEntry = new CacheEntry<>(key, newVal, queue); in get() local
68 entry = map.putIfAbsent(key, newEntry); in get()
74 map.put(key, newEntry); in get()
/libcore/ojluni/src/main/java/sun/security/util/
DCache.java378 CacheEntry<K,V> newEntry = newEntry(key, value, expirationTime, queue); in put() local
379 CacheEntry<K,V> oldEntry = cacheMap.put(key, newEntry); in put()
493 protected CacheEntry<K,V> newEntry(K key, V value, in newEntry() method in MemoryCache
/libcore/ojluni/src/main/java/java/security/
DSecurity.java177 ProviderProperty newEntry = new ProviderProperty(); in getProviderProperty() local
178 newEntry.className = prop; in getProviderProperty()
179 newEntry.provider = prov; in getProviderProperty()
180 return newEntry; in getProviderProperty()
/libcore/ojluni/annotations/hiddenapi/sun/security/util/
DMemoryCache.java76 protected sun.security.util.MemoryCache.CacheEntry<K, V> newEntry( in newEntry() method in MemoryCache
/libcore/ojluni/annotations/hiddenapi/java/util/jar/
DJarFile.java119 java.util.jar.JarEntry newEntry(java.util.zip.ZipEntry ze) { in newEntry() method in JarFile
/libcore/ojluni/src/main/java/java/io/
DObjectStreamClass.java362 EntryFuture newEntry = new EntryFuture(); in lookup() local
363 Reference<?> newRef = new SoftReference<>(newEntry); in lookup()
374 future = newEntry; in lookup()
2330 EntryFuture newEntry = new EntryFuture(); in getReflector() local
2331 Reference<?> newRef = new SoftReference<>(newEntry); in getReflector()
2342 future = newEntry; in getReflector()
/libcore/ojluni/src/main/java/java/util/jar/
DJarVerifier.java783 entry = jar.newEntry(ze); in entries2()
791 entry = jar.newEntry(new ZipEntry(name)); in entries2()
DJarFile.java745 JarEntry newEntry(ZipEntry ze) { in newEntry() method in JarFile
/libcore/ojluni/src/main/native/
Dzip_util.c1109 newEntry(jzfile *zip, jzcell *zc, AccessHint accessHint) in newEntry() function
1319 ze = newEntry(zip, zc, ACCESS_RANDOM); in ZIP_GetEntry2()
1374 result = newEntry(zip, &zip->entries[n], ACCESS_SEQUENTIAL); in ZIP_GetNextEntry()
/libcore/tools/openjdk-analyzer/src/libcore/tools/analyzer/openjdk/
DMain.java128 ZipEntry newEntry = ClassFileUtil.getEntryFromClassNameOrThrow(newZip, className); in run() local
130 InputStream newIn = newZip.getInputStream(newEntry)) { in run()