/libcore/ojluni/src/main/java/java/util/zip/ |
D | Inflater.java | 177 public void setDictionary(byte[] b, int off, int len) { in setDictionary() method in Inflater 186 setDictionary(zsRef.address(), b, off, len); in setDictionary() 200 public void setDictionary(byte[] b) { in setDictionary() method in Inflater 201 setDictionary(b, 0, b.length); in setDictionary() 428 private native static void setDictionary(long addr, byte[] b, int off, in setDictionary() method in Inflater
|
D | Deflater.java | 253 public void setDictionary(byte[] b, int off, int len) { in setDictionary() method in Deflater 262 setDictionary(zsRef.address(), b, off, len); in setDictionary() 276 public void setDictionary(byte[] b) { in setDictionary() method in Deflater 277 setDictionary(b, 0, b.length); in setDictionary() 589 private native static void setDictionary(long addr, byte[] b, int off, int len); in setDictionary() method in Deflater
|
/libcore/ojluni/annotations/hiddenapi/java/util/zip/ |
D | Inflater.java | 50 public void setDictionary(byte[] b, int off, int len) { in setDictionary() method in Inflater 54 public void setDictionary(byte[] b) { in setDictionary() method in Inflater 124 private static native void setDictionary(long addr, byte[] b, int off, int len); in setDictionary() method in Inflater
|
D | Deflater.java | 53 public void setDictionary(byte[] b, int off, int len) { in setDictionary() method in Deflater 57 public void setDictionary(byte[] b) { in setDictionary() method in Deflater 131 private static native void setDictionary(long addr, byte[] b, int off, int len); in setDictionary() method in Deflater
|
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/zip/ |
D | InflaterTest.java | 895 defDict1.setDictionary(dictionary1.getBytes()); in testSetDictionary$B() 896 defDict2.setDictionary(dictionary2.getBytes()); in testSetDictionary$B() 965 infl1.setDictionary(dictionary1.getBytes()); in testSetDictionary$B() 974 infl2.setDictionary(dictionary2.getBytes()); in testSetDictionary$B() 984 infl1.setDictionary(dictionary1.getBytes()); in testSetDictionary$B() 996 infl1.setDictionary(dictionary2.getBytes()); in testSetDictionary$B() 1003 infl1.setDictionary(dictionary2.getBytes()); in testSetDictionary$B() 1024 defDict1.setDictionary(dictionary1.getBytes()); in testSetDictionary$BII() 1025 defDict2.setDictionary(dictionary2.getBytes()); in testSetDictionary$BII() 1026 defDict3.setDictionary(dictionary2.getBytes(), 4, 4); in testSetDictionary$BII() [all …]
|
D | DeflaterTest.java | 463 defl.setDictionary(dictionaryArray); in test_setDictionary$B() 505 defl.setDictionary(dictionaryArray, offSet, length); in test_setDictionary$BII() 539 defl.setDictionary(dictionaryArray, offSet, length); in test_setDictionary$BII() 992 defl.setDictionary(dict); in helper_end_test()
|
/libcore/luni/src/main/native/ |
D | ZipUtilities.h | 36 void setDictionary(JNIEnv* env, jbyteArray javaDictionary, int off, int len, bool inflate);
|
D | ZipUtilities.cpp | 45 void NativeZipStream::setDictionary(JNIEnv* env, jbyteArray javaDictionary, int off, int len, in setDictionary() function in NativeZipStream
|
/libcore/luni/src/test/java/libcore/java/util/zip/ |
D | InflaterTest.java | 63 inflater.setDictionary(dictionary); in assertRoundTrip() 115 deflater.setDictionary(dictionary); in deflate()
|
/libcore/ojluni/src/main/native/ |
D | Inflater.c | 206 NATIVE_METHOD(Inflater, setDictionary, "(J[BII)V"),
|
D | Deflater.c | 245 NATIVE_METHOD(Deflater, setDictionary, "(J[BII)V"),
|
/libcore/api/ |
D | current.txt | 16950 method public void setDictionary(byte[], int, int); 16951 method public void setDictionary(byte[]); 17023 method public void setDictionary(byte[], int, int); 17024 method public void setDictionary(byte[]);
|