/libcore/luni/src/test/java/libcore/java/util/zip/ |
D | OldAndroidZipStreamTest.java | 97 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()
|
D | OldAndroidZipFileTest.java | 84 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/ |
D | LocaleObjectCache.java | 67 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/ |
D | Cache.java | 378 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/ |
D | Security.java | 177 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/ |
D | MemoryCache.java | 76 protected sun.security.util.MemoryCache.CacheEntry<K, V> newEntry( in newEntry() method in MemoryCache
|
/libcore/ojluni/annotations/hiddenapi/java/util/jar/ |
D | JarFile.java | 119 java.util.jar.JarEntry newEntry(java.util.zip.ZipEntry ze) { in newEntry() method in JarFile
|
/libcore/ojluni/src/main/java/java/io/ |
D | ObjectStreamClass.java | 362 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/ |
D | JarVerifier.java | 783 entry = jar.newEntry(ze); in entries2() 791 entry = jar.newEntry(new ZipEntry(name)); in entries2()
|
D | JarFile.java | 745 JarEntry newEntry(ZipEntry ze) { in newEntry() method in JarFile
|
/libcore/ojluni/src/main/native/ |
D | zip_util.c | 1109 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/ |
D | Main.java | 128 ZipEntry newEntry = ClassFileUtil.getEntryFromClassNameOrThrow(newZip, className); in run() local 130 InputStream newIn = newZip.getInputStream(newEntry)) { in run()
|