/libcore/luni/src/main/native/ |
D | java_util_zip_Deflater.cpp | 26 …Deflater_setDictionaryImpl(JNIEnv* env, jobject, jbyteArray dict, int off, int len, jlong handle) { in Deflater_setDictionaryImpl() 30 static jlong Deflater_getTotalInImpl(JNIEnv*, jobject, jlong handle) { in Deflater_getTotalInImpl() 34 static jlong Deflater_getTotalOutImpl(JNIEnv*, jobject, jlong handle) { in Deflater_getTotalOutImpl() 38 static jint Deflater_getAdlerImpl(JNIEnv*, jobject, jlong handle) { in Deflater_getAdlerImpl() 67 …oid Deflater_setInputImpl(JNIEnv* env, jobject, jbyteArray buf, jint off, jint len, jlong handle) { in Deflater_setInputImpl() 71 …lateImpl(JNIEnv* env, jobject recv, jbyteArray buf, int off, int len, jlong handle, int flushStyle… in Deflater_deflateImpl() 111 static void Deflater_endImpl(JNIEnv*, jobject, jlong handle) { in Deflater_endImpl() 117 static void Deflater_resetImpl(JNIEnv* env, jobject, jlong handle) { in Deflater_resetImpl() 125 static void Deflater_setLevelsImpl(JNIEnv* env, jobject, int level, int strategy, jlong handle) { in Deflater_setLevelsImpl()
|
D | java_util_zip_Inflater.cpp | 51 …oid Inflater_setInputImpl(JNIEnv* env, jobject, jbyteArray buf, jint off, jint len, jlong handle) { in Inflater_setInputImpl() 55 …ileInputImpl(JNIEnv* env, jobject, jobject javaFileDescriptor, jlong off, jint len, jlong handle) { in Inflater_setFileInputImpl() 91 …t Inflater_inflateImpl(JNIEnv* env, jobject recv, jbyteArray buf, int off, int len, jlong handle) { in Inflater_inflateImpl() 132 static jint Inflater_getAdlerImpl(JNIEnv*, jobject, jlong handle) { in Inflater_getAdlerImpl() 136 static void Inflater_endImpl(JNIEnv*, jobject, jlong handle) { in Inflater_endImpl() 142 …Inflater_setDictionaryImpl(JNIEnv* env, jobject, jbyteArray dict, int off, int len, jlong handle) { in Inflater_setDictionaryImpl() 146 static void Inflater_resetImpl(JNIEnv* env, jobject, jlong handle) { in Inflater_resetImpl() 154 static jlong Inflater_getTotalOutImpl(JNIEnv*, jobject, jlong handle) { in Inflater_getTotalOutImpl() 158 static jlong Inflater_getTotalInImpl(JNIEnv*, jobject, jlong handle) { in Inflater_getTotalInImpl()
|
D | java_util_jar_StrictJarFile.cpp | 89 ZipArchiveHandle handle; in StrictJarFile_nativeOpenJarFile() local 130 IterationHandle* handle = new IterationHandle(prefixChars.c_str()); in StrictJarFile_nativeStartIteration() local 152 IterationHandle* handle = reinterpret_cast<IterationHandle*>(iterationHandle); in StrictJarFile_nativeNextEntry() local
|
D | libcore_icu_NativeConverter.cpp | 505 static jfloat NativeConverter_getAveCharsPerByte(JNIEnv* env, jclass, jlong handle) { in NativeConverter_getAveCharsPerByte()
|
D | java_math_NativeBN.cpp | 62 static int isValidHandle(JNIEnv* env, jlong handle, const char* message) { in isValidHandle()
|
/libcore/luni/src/main/java/java/util/zip/ |
D | Inflater.java | 103 private native void endImpl(long handle); in endImpl() 142 private native int getAdlerImpl(long handle); in getAdlerImpl() 190 private native long getTotalInImpl(long handle); in getTotalInImpl() 201 private native long getTotalOutImpl(long handle); in getTotalOutImpl() 244 private native int inflateImpl(byte[] buf, int offset, int byteCount, long handle); in inflateImpl() 276 private native void resetImpl(long handle); in resetImpl() 297 … private native void setDictionaryImpl(byte[] dictionary, int offset, int byteCount, long handle); in setDictionaryImpl() 319 private native void setInputImpl(byte[] buf, int offset, int byteCount, long handle); in setInputImpl() 328 private native int setFileInputImpl(FileDescriptor fd, long offset, int byteCount, long handle); in setFileInputImpl()
|
D | Deflater.java | 244 … private native int deflateImpl(byte[] buf, int offset, int byteCount, long handle, int flushParm); in deflateImpl() 265 private native void endImpl(long handle); in endImpl() 312 private native int getAdlerImpl(long handle); in getAdlerImpl() 323 private native long getTotalInImpl(long handle); in getTotalInImpl() 334 private native long getTotalOutImpl(long handle); in getTotalOutImpl() 362 private native void resetImpl(long handle); in resetImpl() 386 private native void setDictionaryImpl(byte[] buf, int offset, int byteCount, long handle); in setDictionaryImpl() 412 private native void setLevelsImpl(int level, int strategy, long handle); in setLevelsImpl() 414 private native void setInputImpl(byte[] buf, int offset, int byteCount, long handle); in setInputImpl()
|
/libcore/luni/src/main/java/javax/security/auth/callback/ |
D | CallbackHandler.java | 52 void handle(Callback[] callbacks) throws IOException, UnsupportedCallbackException; in handle() method
|
/libcore/support/src/test/java/org/apache/harmony/security/tests/support/ |
D | tmpCallbackHandler.java | 37 public void handle(Callback[] callback) throws IOException, in handle() method in tmpCallbackHandler
|
/libcore/luni/src/main/java/java/io/ |
D | ObjectOutputStream.java | 417 int handle = objectsWritten.get(obj); in dumpCycle() local 492 int handle = nextHandle(); in registerObjectWritten() local 730 int handle = -1; in writeClassDesc() local 788 private void writeCyclicReference(int handle) throws IOException { in writeCyclicReference() 1116 int handle = nextHandle(); in writeNewArray() local 1222 int handle = nextHandle(); in writeNewClass() local 1355 int handle = registerObjectWritten(object); in writeNewObject() local 1431 int handle = nextHandle(); in writeNewString() local 1546 int handle = dumpCycle(object); in writeObjectInternal() local 1668 int handle = -1; in writeEnumDesc() local [all …]
|
D | ObjectInputStream.java | 2122 private Object registeredObjectRead(int handle) throws InvalidObjectException { in registeredObjectRead() 2133 private void registerObjectRead(Object obj, int handle, boolean unshared) throws IOException { in registerObjectRead()
|
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/javax/security/auth/callback/ |
D | CallbackHandlerTest.java | 43 public void handle(Callback[] callbacks) { in handle() method in CallbackHandlerTest.CallbackHandlerImpl
|
/libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/ |
D | KSCallbackHandlerProtectionTest.java | 56 public void handle(Callback[] callbacks) throws IOException, in testCallbackHandlerProtection() method in KSCallbackHandlerProtectionTest.TestCallbackHandler
|
/libcore/dom/src/test/java/org/w3c/domts/ |
D | UserDataMonitor.java | 50 public void handle( in handle() method in UserDataMonitor
|
/libcore/luni/src/main/java/org/w3c/dom/ |
D | UserDataHandler.java | 66 public void handle(short operation, in handle() method
|
/libcore/luni/src/test/java/libcore/xml/ |
D | DomTest.java | 1703 public void handle(short operation, String key, Object data, Node src, Node dst) { in handle() method in DomTest.RecordingHandler
|
/libcore/benchmarks/src/benchmarks/regression/ |
D | R.java | 1686 public static final int handle = 0; field in R
|