Home
last modified time | relevance | path

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

/libcore/luni/src/main/native/
Djava_util_zip_Deflater.cpp26 …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()
Djava_util_zip_Inflater.cpp51 …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()
Djava_util_jar_StrictJarFile.cpp89 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
Dlibcore_icu_NativeConverter.cpp505 static jfloat NativeConverter_getAveCharsPerByte(JNIEnv* env, jclass, jlong handle) { in NativeConverter_getAveCharsPerByte()
Djava_math_NativeBN.cpp62 static int isValidHandle(JNIEnv* env, jlong 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()
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()
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/main/java/java/io/
DObjectOutputStream.java417 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 …]
DObjectInputStream.java2122 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/
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/org/w3c/dom/
DUserDataHandler.java66 public void handle(short operation, in handle() method
/libcore/luni/src/test/java/libcore/xml/
DDomTest.java1703 public void handle(short operation, String key, Object data, Node src, Node dst) { in handle() method in DomTest.RecordingHandler
/libcore/benchmarks/src/benchmarks/regression/
DR.java1686 public static final int handle = 0; field in R