Searched refs:handle (Results 1 - 25 of 139) sorted by relevance

123456

/dalvik/libcore/xml/src/main/java/org/apache/xml/dtm/ref/
H A DDTMChildIterNodeList.java74 * @param parentHandle DTM node-handle integer
96 int handle=m_firstChild;
97 while(--index>=0 && handle!=DTM.NULL) {
98 handle=m_parentDTM.getNextSibling(handle);
100 if (handle == DTM.NULL) {
103 return m_parentDTM.getNode(handle);
112 for (int handle=m_firstChild;
113 handle!=DTM.NULL;
114 handle
[all...]
H A DDTMNodeIterator.java116 /** Return a handle to the filter used to screen nodes.
139 int handle=dtm_iter.getRoot();
140 return dtm_iter.getDTM(handle).getNode(handle);
163 int handle=dtm_iter.nextNode();
164 if (handle==DTM.NULL)
166 return dtm_iter.getDTM(handle).getNode(handle);
181 int handle=dtm_iter.previousNode();
182 if (handle
[all...]
H A DDTMNodeList.java110 int handle=m_iter.item(index);
111 if (handle == DTM.NULL) {
114 return m_iter.getDTM(handle).getNode(handle);
/dalvik/libcore/auth/src/main/java/javax/security/auth/callback/
H A DCallbackHandler.java23 * Needs to be implemented by classes that want to handle authentication
24 * {@link Callback}s. A single method {@link #handle(Callback[])} must be
36 * Callback}s it actually wants to handle and in which way. For example, a
40 * values. If a {@code CallbackHandler} is not able to handle a specific
49 * if the {@code CallbackHandler} is not able to handle a
52 void handle(Callback[] callbacks) throws IOException, UnsupportedCallbackException; method in interface:CallbackHandler
/dalvik/libcore/sql/src/main/java/SQLite/
H A DFunctionContext.java12 * Internal handle for the native SQLite API.
15 private long handle = 0; field in class:FunctionContext
H A DVm.java10 * Internal handle for the compiled SQLite VM.
13 private long handle = 0; field in class:Vm
/dalvik/libcore/xml/src/main/java/org/w3c/dom/
H A DUserDataHandler.java66 public void handle(short operation, method in interface:UserDataHandler
/dalvik/vm/mterp/x86-atom/
H A DOP_THROW.S34 je common_errNullObject # handle null object
36 jmp common_exceptionThrown # handle exception
H A DbinopD.S40 je common_errDivideByZero # handle divide by zero
41 cmpl $$-1, %ecx # handle -1 special case divide error
43 cmpl $$0x80000000,%eax # handle min int special case divide error
H A DOP_AGET_WIDE.S37 je common_errNullObject # handle null array object
39 jnc common_errArrayIndex # handle index >= length, bail
H A DOP_APUT.S43 je common_errNullObject # handle null array object
45 jnc common_errArrayIndex # handle index >= length, bail
H A DOP_APUT_WIDE.S37 je common_errNullObject # handle null array object
39 jnc common_errArrayIndex # handle index >= length, bail
H A DOP_MONITOR_EXIT.S36 je common_errNullObject # handle null object
45 je common_exceptionThrown # handle exception
H A DOP_EXECUTE_INLINE.S50 jl 0f # handle zero args
51 je 1f # handle one arg
53 jl 2f # handle two args
54 je 3f # handle three args
85 je common_exceptionThrown # handle exception
/dalvik/libcore/archive/src/main/native/
H A Djava_util_zip_Deflater.c39 int len, jlong handle)
44 JCLZipStream *stream = (JCLZipStream *) ((IDATA) handle);
65 jlong handle)
69 stream = (JCLZipStream *) ((IDATA) handle);
75 jlong handle)
79 stream = (JCLZipStream *) ((IDATA) handle);
85 jlong handle)
89 stream = (JCLZipStream *) ((IDATA) handle);
161 jlong handle)
165 JCLZipStream* stream = (JCLZipStream *) ((IDATA) handle);
37 Java_java_util_zip_Deflater_setDictionaryImpl(JNIEnv * env, jobject recv, jbyteArray dict, int off, int len, jlong handle) argument
64 Java_java_util_zip_Deflater_getTotalInImpl(JNIEnv * env, jobject recv, jlong handle) argument
74 Java_java_util_zip_Deflater_getTotalOutImpl(JNIEnv * env, jobject recv, jlong handle) argument
84 Java_java_util_zip_Deflater_getAdlerImpl(JNIEnv * env, jobject recv, jlong handle) argument
159 Java_java_util_zip_Deflater_setInputImpl(JNIEnv * env, jobject recv, jbyteArray buf, jint off, jint len, jlong handle) argument
181 Java_java_util_zip_Deflater_deflateImpl(JNIEnv * env, jobject recv, jbyteArray buf, int off, int len, jlong handle, int flushParm) argument
233 Java_java_util_zip_Deflater_endImpl(JNIEnv * env, jobject recv, jlong handle) argument
250 Java_java_util_zip_Deflater_resetImpl(JNIEnv * env, jobject recv, jlong handle) argument
260 Java_java_util_zip_Deflater_setLevelsImpl(JNIEnv * env, jobject recv, int level, int strategy, jlong handle) argument
[all...]
H A Djava_util_zip_Inflater.c106 jlong handle)
110 JCLZipStream *stream = (JCLZipStream *) ((IDATA) handle);
128 jobject javaFileDescriptor, jlong off, jint len, jlong handle)
133 JCLZipStream * stream = (JCLZipStream *) ((IDATA) handle);
159 jlong handle)
162 JCLZipStream *stream = (JCLZipStream *) ((IDATA) handle);
218 jlong handle)
222 stream = (JCLZipStream *) ((IDATA) handle);
228 Java_java_util_zip_Inflater_endImpl (JNIEnv * env, jobject recv, jlong handle) argument
233 stream = (JCLZipStream *) ((IDATA) handle);
104 Java_java_util_zip_Inflater_setInputImpl(JNIEnv * env, jobject recv, jbyteArray buf, jint off, jint len, jlong handle) argument
127 Java_java_util_zip_Inflater_setFileInputImpl(JNIEnv * env, jobject recv, jobject javaFileDescriptor, jlong off, jint len, jlong handle) argument
157 Java_java_util_zip_Inflater_inflateImpl(JNIEnv * env, jobject recv, jbyteArray buf, int off, int len, jlong handle) argument
217 Java_java_util_zip_Inflater_getAdlerImpl(JNIEnv * env, jobject recv, jlong handle) argument
244 Java_java_util_zip_Inflater_setDictionaryImpl(JNIEnv * env, jobject recv, jbyteArray dict, int off, int len, jlong handle) argument
271 Java_java_util_zip_Inflater_resetImpl(JNIEnv * env, jobject recv, jlong handle) argument
296 Java_java_util_zip_Inflater_getTotalOutImpl(JNIEnv * env, jobject recv, jlong handle) argument
307 Java_java_util_zip_Inflater_getTotalInImpl(JNIEnv * env, jobject recv, jlong handle) argument
[all...]
/dalvik/libcore/archive/src/main/java/java/util/zip/
H A DDeflater.java249 int nbytes, long handle, int flushParm1);
251 private synchronized native void endImpl(long handle); argument
318 private synchronized native int getAdlerImpl(long handle); argument
333 private synchronized native long getTotalInImpl(long handle); argument
348 private synchronized native long getTotalOutImpl(long handle); argument
389 private synchronized native void resetImpl(long handle); argument
433 int nbytes, long handle);
478 long handle);
481 int nbytes, long handle);
248 deflateImpl(byte[] buf, int off, int nbytes, long handle, int flushParm1) argument
432 setDictionaryImpl(byte[] buf, int off, int nbytes, long handle) argument
477 setLevelsImpl(int level, int strategy, long handle) argument
480 setInputImpl(byte[] buf, int off, int nbytes, long handle) argument
H A DInflater.java94 private native synchronized void endImpl(long handle); argument
128 private native synchronized int getAdlerImpl(long handle); argument
185 private synchronized native long getTotalInImpl(long handle); argument
202 private native synchronized long getTotalOutImpl(long handle); argument
265 int nbytes, long handle);
307 private native synchronized void resetImpl(long handle); argument
352 int nbytes, long handle);
420 int nbytes, long handle);
424 int nbytes, long handle);
264 inflateImpl(byte[] buf, int off, int nbytes, long handle) argument
351 setDictionaryImpl(byte[] buf, int off, int nbytes, long handle) argument
419 setInputImpl(byte[] buf, int off, int nbytes, long handle) argument
423 setFileInputImpl(FileDescriptor fd, long off, int nbytes, long handle) argument
/dalvik/libcore/nio/src/main/java/org/apache/harmony/nio/internal/
H A DReadWriteFileChannel.java32 public ReadWriteFileChannel(Object stream, int handle) { argument
33 super(stream, handle);
H A DWriteOnlyFileChannel.java38 public WriteOnlyFileChannel(Object stream, int handle) { argument
39 super(stream, handle);
42 public WriteOnlyFileChannel(Object stream, int handle, boolean isAppend) { argument
43 super(stream, handle);
/dalvik/libcore/security/src/test/java/tests/api/javax/security/auth/
H A DCallbackHandlerTest.java38 * @tests javax.security.auth.callback.CallbackHandler#handle(Callback[] callbacks)
43 method = "handle",
49 ch.handle(null);
55 public void handle(Callback[] callbacks) { method in class:CallbackHandlerTest.CallbackHandlerImpl
/dalvik/vm/mterp/armv5te/
H A DOP_THROW_VERIFICATION_ERROR.S13 b common_exceptionThrown @ handle exception
/dalvik/libcore/support/src/test/java/org/apache/harmony/security/tests/support/
H A DtmpCallbackHandler.java37 public void handle(Callback[] callback) throws IOException, method in class:tmpCallbackHandler
/dalvik/libcore/icu/src/main/native/
H A DNativeConverter.cpp44 * @param env environment handle for JNI
45 * @param jClass handle for the class
46 * @param handle buffer to recieve ICU's converter address
71 * @param env environment handle for JNI
72 * @param jClass handle for the class
73 * @param handle address of ICU converter
75 static void closeConverter (JNIEnv *env, jclass jClass, jlong handle) { argument
77 UConverter* cnv = (UConverter*)(long)handle;
106 * @param env environment handle for JNI
107 * @param jClass handle fo
111 setSubstitutionModeCharToByte(JNIEnv *env, jclass jClass, jlong handle, jboolean mode) argument
154 setSubstitutionModeByteToChar(JNIEnv *env, jclass jClass, jlong handle, jboolean mode) argument
201 convertCharToByte(JNIEnv *env, jclass jClass, jlong handle, jcharArray source, jint sourceEnd, jbyteArray target, jint targetEnd, jintArray data, jboolean flush) argument
248 encode(JNIEnv *env, jclass jClass, jlong handle, jcharArray source, jint sourceEnd, jbyteArray target, jint targetEnd, jintArray data, jboolean flush) argument
285 convertByteToChar(JNIEnv *env, jclass jClass, jlong handle, jbyteArray source, jint sourceEnd, jcharArray target, jint targetEnd, jintArray data, jboolean flush) argument
333 decode(JNIEnv *env, jclass jClass, jlong handle, jbyteArray source, jint sourceEnd, jcharArray target, jint targetEnd, jintArray data, jboolean flush) argument
357 resetByteToChar(JNIEnv *env, jclass jClass, jlong handle) argument
365 resetCharToByte(JNIEnv *env, jclass jClass, jlong handle) argument
374 countInvalidBytes(JNIEnv *env, jclass jClass, jlong handle, jintArray length) argument
394 countInvalidChars(JNIEnv *env, jclass jClass, jlong handle, jintArray length) argument
412 getMaxBytesPerChar(JNIEnv *env, jclass jClass, jlong handle) argument
421 getMinBytesPerChar(JNIEnv *env, jclass jClass, jlong handle) argument
429 getAveBytesPerChar(JNIEnv *env, jclass jClass, jlong handle) argument
439 flushByteToChar(JNIEnv *env, jclass jClass,jlong handle, jcharArray target, jint targetEnd, jintArray data) argument
480 flushCharToByte(JNIEnv *env, jclass jClass, jlong handle, jbyteArray target, jint targetEnd, jintArray data) argument
529 setSubstitutionBytes(JNIEnv *env, jclass jClass, jlong handle, jbyteArray subChars, jint length) argument
599 setSubstitutionChars(JNIEnv *env, jclass jClass, jlong handle, jcharArray subChars, jint length) argument
650 canEncode(JNIEnv *env, jclass jClass, jlong handle, jint codeUnit) argument
676 canDecode(JNIEnv *env, jclass jClass, jlong handle, jbyteArray source) argument
1059 setCallbackEncode(JNIEnv *env, jclass jClass, jlong handle, jint onMalformedInput, jint onUnmappableInput, jbyteArray subChars, jint length) argument
1187 setCallbackDecode(JNIEnv *env, jclass jClass, jlong handle, jint onMalformedInput, jint onUnmappableInput, jcharArray subChars, jint length) argument
1249 getMaxCharsPerByte(JNIEnv *env, jclass jClass, jlong handle) argument
1256 getAveCharsPerByte(JNIEnv *env, jclass jClass, jlong handle) argument
1271 getSubstitutionBytes(JNIEnv *env, jclass jClass, jlong handle) argument
[all...]
/dalvik/libcore/luni/src/main/java/java/io/
H A DObjectOutputStream.java82 * Table mapping Object -> Integer (handle)
87 * All objects are assigned an ID (integer handle)
477 // If the object has been saved already, save its handle only
478 Integer handle = objectsWritten.get(obj);
479 if (handle != null) {
480 writeCyclicReference(handle);
481 return handle;
573 * Return the next <code>Integer</code> handle to be used to indicate cyclic
576 * @return the next handle to represent the next cyclic reference
609 * handle t
940 writeCyclicReference(Integer handle) argument
[all...]

Completed in 1999 milliseconds

123456