Searched defs:handle (Results 1 - 18 of 18) sorted by relevance

/libcore/ojluni/src/main/java/javax/security/auth/callback/
H A DCallbackHandler.java74 * <p> The {@code handle} method implementation checks the
78 * {@code handle} method implementation might look like.
83 * public void handle(Callback[] callbacks)
148 void handle(Callback[] callbacks) method in interface:CallbackHandler
/libcore/ojluni/src/main/java/sun/misc/
H A DJavaIOFileDescriptorAccess.java38 public void setHandle(FileDescriptor obj, long handle); argument
/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
/libcore/dom/src/test/java/org/w3c/domts/
H A DUserDataMonitor.java36 * Implementation of UserDataHandler.handle. Creates a UserDataNotification
50 public void handle( method in class:UserDataMonitor
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/javax/security/auth/callback/
H A DCallbackHandlerTest.java32 * javax.security.auth.callback.CallbackHandler#handle(Callback[] callbacks)
37 ch.handle(null);
43 public void handle(Callback[] callbacks) { method in class:CallbackHandlerTest.CallbackHandlerImpl
/libcore/luni/src/main/java/org/w3c/dom/
H A DUserDataHandler.java66 public void handle(short operation, method in interface:UserDataHandler
/libcore/ojluni/src/main/java/java/lang/invoke/
H A DMethodHandleImpl.java29 * A method handle that's directly associated with an ArtField or an ArtMethod and
56 * Materialize a member from this method handle's ArtField or ArtMethod pointer.
61 * Implementation of {@code MethodHandleInfo} in terms of the handle being cracked
66 private final MethodHandle handle; field in class:MethodHandleImpl.HandleInfo
68 HandleInfo(Member member, MethodHandle handle) { argument
70 this.handle = handle;
75 switch (handle.getHandleKind()) {
105 throw new AssertionError("Unexpected handle kind: " + handle
[all...]
/libcore/ojluni/src/main/java/java/util/concurrent/
H A DCompletionStage.java91 * <li>Two method forms ({@link #handle handle} and {@link
123 * <p>Method form {@link #handle handle} is the most general way of
716 public <U> CompletionStage<U> handle method in interface:CompletionStage
768 * <p>Unlike method {@link #handle handle},
H A DCompletableFuture.java2179 public <U> CompletableFuture<U> handle( method in class:CompletableFuture
2213 * available using methods {@code whenComplete} and {@code handle}.
/libcore/ojluni/src/main/native/
H A DFileChannelImpl.c67 handle(JNIEnv *env, jlong rv, char *msg) function
112 return handle(env, -1, "Map failed");
124 return handle(env,
142 return handle(env, result, "Position failed");
H A DFileDispatcherImpl.c122 handle(JNIEnv *env, jlong rv, char *msg) function
157 return handle(env, result, "Force failed");
164 return handle(env,
176 return handle(env, -1, "Size failed");
182 return handle(env, -1, "Size failed");
/libcore/luni/src/main/native/
H A Djava_math_NativeBN.cpp69 static int isValidHandle(JNIEnv* env, jlong handle, const char* message) { argument
70 if (handle == 0) {
78 return isValidHandle(env, a, "Mandatory handle (first) passed as null");
83 return isValidHandle(env, b, "Mandatory handle (second) passed as null");
88 return isValidHandle(env, c, "Mandatory handle (third) passed as null");
93 return isValidHandle(env, d, "Mandatory handle (fourth) passed as null");
H A Dlibcore_icu_NativeConverter.cpp554 static jfloat NativeConverter_getAveCharsPerByte(JNIEnv* env, jclass, jlong handle) { argument
555 return (1 / (jfloat) NativeConverter_getMaxBytesPerChar(env, NULL, handle));
/libcore/ojluni/src/main/java/java/io/
H A DObjectOutputStream.java128 * the objects to handle any versioning that occurs.
179 /** obj -> wire handle map */
763 // Android-removed: Don't clear() during close(), keep the handle table. http://b/28159133
1047 int handle;
1050 } else if ((handle = handles.lookup(str)) != -1) {
1051 writeHandle(handle);
1134 // handle previously written and non-replaceable objects
1257 * Writes given object handle to stream.
1259 private void writeHandle(int handle) throws IOException { argument
1261 bout.writeInt(baseWireHandle + handle);
2422 insert(Object obj, int handle) argument
[all...]
H A DObjectInputStream.java183 * the objects to handle any versioning that occurs.
211 /** handle value representing null */
214 /** marker for unshared objects in internal handle table */
251 /** wire handle -> obj/exception map */
253 /** scratch field for passing handle values up/down call stack */
370 // if nested read, passHandle contains handle of enclosing object
426 * to deserialize back-references to the stream handle deserialized
429 * Deserializing an object via readUnshared invalidates the stream handle
460 // if nested read, passHandle contains handle of enclosing object
1392 * replacement for object, and updates handle tabl
3354 markException(int handle, ClassNotFoundException ex) argument
3384 finish(int handle) argument
3422 setObject(int handle, Object obj) argument
3442 lookupObject(int handle) argument
3453 lookupException(int handle) argument
3506 add(int handle) argument
[all...]
/libcore/jsr166-tests/src/test/java/jsr166/
H A DCompletableFutureTest.java102 // handle (and whenComplete) can distinguish between "direct"
104 return f.handle((U u, Throwable t) -> t).join();
600 public <T,U> CompletableFuture<U> handle
603 return f.handle(a);
674 public <T,U> CompletableFuture<U> handle
747 public <T,U> CompletableFuture<U> handle
805 public abstract <T,U> CompletableFuture<U> handle method in class:CompletableFutureTest.ExecutionMode
1023 * exception takes precedence (unlike handle)
1056 * handle action completes normally with function value on normal
1067 final CompletableFuture<Integer> g = m.handle
[all...]
/libcore/luni/src/test/java/libcore/xml/
H A DDomTest.java1100 String message = "This implementation's getBaseURI() doesn't handle relative URIs";
1144 String message = "This implementation's getBaseURI() doesn't handle "
1703 public void handle(short operation, String key, Object data, Node src, Node dst) { method in class:DomTest.RecordingHandler
/libcore/benchmarks/src/benchmarks/regression/
H A DR.java1686 public static final int handle = 0; field in class:R

Completed in 869 milliseconds