Home
last modified time | relevance | path

Searched defs:handle (Results 1 – 16 of 16) sorted by relevance

/libcore/luni/src/main/native/
Djava_util_zip_Inflater.cpp49 …oid Inflater_setInputImpl(JNIEnv* env, jobject, jbyteArray buf, jint off, jint len, jlong handle) { in Inflater_setInputImpl()
53 …ileInputImpl(JNIEnv* env, jobject, jobject javaFileDescriptor, jlong off, jint len, jlong handle) { in Inflater_setFileInputImpl()
89 …t Inflater_inflateImpl(JNIEnv* env, jobject recv, jbyteArray buf, int off, int len, jlong handle) { in Inflater_inflateImpl()
130 static jint Inflater_getAdlerImpl(JNIEnv*, jobject, jlong handle) { in Inflater_getAdlerImpl()
134 static void Inflater_endImpl(JNIEnv*, jobject, jlong handle) { in Inflater_endImpl()
140 …Inflater_setDictionaryImpl(JNIEnv* env, jobject, jbyteArray dict, int off, int len, jlong handle) { in Inflater_setDictionaryImpl()
144 static void Inflater_resetImpl(JNIEnv* env, jobject, jlong handle) { in Inflater_resetImpl()
151 static jlong Inflater_getTotalOutImpl(JNIEnv*, jobject, jlong handle) { in Inflater_getTotalOutImpl()
155 static jlong Inflater_getTotalInImpl(JNIEnv*, jobject, jlong handle) { in Inflater_getTotalInImpl()
Djava_util_zip_Deflater.cpp24 …Deflater_setDictionaryImpl(JNIEnv* env, jobject, jbyteArray dict, int off, int len, jlong handle) { in Deflater_setDictionaryImpl()
28 static jlong Deflater_getTotalInImpl(JNIEnv*, jobject, jlong handle) { in Deflater_getTotalInImpl()
32 static jlong Deflater_getTotalOutImpl(JNIEnv*, jobject, jlong handle) { in Deflater_getTotalOutImpl()
36 static jint Deflater_getAdlerImpl(JNIEnv*, jobject, jlong handle) { in Deflater_getAdlerImpl()
65 …oid Deflater_setInputImpl(JNIEnv* env, jobject, jbyteArray buf, jint off, jint len, jlong handle) { in Deflater_setInputImpl()
69 …lateImpl(JNIEnv* env, jobject recv, jbyteArray buf, int off, int len, jlong handle, int flushStyle… in Deflater_deflateImpl()
109 static void Deflater_endImpl(JNIEnv*, jobject, jlong handle) { in Deflater_endImpl()
115 static void Deflater_resetImpl(JNIEnv* env, jobject, jlong handle) { in Deflater_resetImpl()
123 static void Deflater_setLevelsImpl(JNIEnv* env, jobject, int level, int strategy, jlong handle) { in Deflater_setLevelsImpl()
Dlibcore_icu_NativeConverter.cpp504 static jfloat NativeConverter_getAveCharsPerByte(JNIEnv* env, jclass, jlong handle) { in NativeConverter_getAveCharsPerByte()
Djava_math_NativeBN.cpp42 static int isValidHandle (JNIEnv* env, void* handle, const char* message) { in isValidHandle()
/libcore/luni/src/main/java/java/util/zip/
DInflater.java103 private native void endImpl(long handle); in endImpl()
142 private native int getAdlerImpl(long handle); in getAdlerImpl()
181 private native long getTotalInImpl(long handle); in getTotalInImpl()
192 private native long getTotalOutImpl(long handle); in getTotalOutImpl()
235 private native int inflateImpl(byte[] buf, int offset, int byteCount, long handle); in inflateImpl()
267 private native void resetImpl(long handle); in resetImpl()
288 … private native void setDictionaryImpl(byte[] dictionary, int offset, int byteCount, long handle); in setDictionaryImpl()
310 private native void setInputImpl(byte[] buf, int offset, int byteCount, long handle); in setInputImpl()
319 private native int setFileInputImpl(FileDescriptor fd, long offset, int byteCount, long handle); in setFileInputImpl()
DDeflater.java244 … 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/
DCallbackHandler.java52 void handle(Callback[] callbacks) throws IOException, UnsupportedCallbackException; in handle() method
/libcore/support/src/test/java/org/apache/harmony/security/tests/support/
DtmpCallbackHandler.java37 public void handle(Callback[] callback) throws IOException, in handle() method in tmpCallbackHandler
/libcore/luni/src/test/java/tests/api/javax/security/auth/
DCallbackHandlerTest.java43 public void handle(Callback[] callbacks) { in handle() method in CallbackHandlerTest.CallbackHandlerImpl
/libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/
DKSCallbackHandlerProtectionTest.java56 public void handle(Callback[] callbacks) throws IOException, in testCallbackHandlerProtection() method in KSCallbackHandlerProtectionTest.TestCallbackHandler
/libcore/dom/src/test/java/org/w3c/domts/
DUserDataMonitor.java50 public void handle( in handle() method in UserDataMonitor
/libcore/luni/src/main/java/java/io/
DObjectOutputStream.java425 int handle = objectsWritten.get(obj); in dumpCycle() local
514 int handle = nextHandle(); in registerObjectWritten() local
752 int handle = -1; in writeClassDesc() local
810 private void writeCyclicReference(int handle) throws IOException { in writeCyclicReference()
1136 int handle = nextHandle(); in writeNewArray() local
1242 int handle = nextHandle(); in writeNewClass() local
1375 int handle = registerObjectWritten(object); in writeNewObject() local
1451 int handle = nextHandle(); in writeNewString() local
1564 int handle = -1; in writeObjectInternal() local
1688 int handle = -1; in writeEnumDesc() local
[all …]
DObjectInputStream.java2160 private Object registeredObjectRead(int handle) throws InvalidObjectException { in registeredObjectRead()
2171 private void registerObjectRead(Object obj, int handle, boolean unshared) throws IOException { in registerObjectRead()
/libcore/luni/src/main/java/org/w3c/dom/
DUserDataHandler.java66 public void handle(short operation, in handle() method
/libcore/luni/src/main/java/libcore/net/http/
DHeaderParser.java28 void handle(String directive, String parameter); in handle() method
/libcore/luni/src/test/java/libcore/xml/
DDomTest.java1690 public void handle(short operation, String key, Object data, Node src, Node dst) { in handle() method in DomTest.RecordingHandler