Searched defs:call (Results 1 - 25 of 105) sorted by relevance

12345

/openjdk7/jdk/src/share/classes/java/util/concurrent/
H A DCallable.java41 * <tt>call</tt>.
55 * @param <V> the result type of method <tt>call</tt>
64 V call() throws Exception; method in interface:Callable
/openjdk7/hotspot/src/share/vm/utilities/
H A DerrorReporter.cpp30 void ErrorReporter::call(FILE* fd, char* buffer, int length) { function in class:ErrorReporter
/openjdk7/langtools/test/tools/javac/accessVirtualInner/b/
H A DB.java31 void call(); method in interface:B.Caller
38 public void call() {
42 caller.call();
/openjdk7/jdk/test/java/nio/channels/SocketChannel/
H A DCloseDuringWrite.java48 public Void call() throws IOException { method in class:CloseDuringWrite.Closer
H A DShortWrite.java62 public Long call() throws Exception { method in class:ShortWrite.Reader
/openjdk7/jdk/src/share/classes/sun/rmi/server/
H A DDispatcher.java38 * The up-call to the server and the marshaling of return result
41 * @param obj the target remote object for the call
42 * @param call the "remote call" from which operation and
47 void dispatch(Remote obj, RemoteCall call) argument
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/utilities/soql/
H A DCallable.java37 public Object call(Object[] args) throws ScriptException; method in interface:Callable
H A DInvocableCallable.java47 public Object call(Object[] args) throws ScriptException { method in class:InvocableCallable
H A DMethodCallable.java53 public Object call(Object[] args) throws ScriptException { method in class:MethodCallable
/openjdk7/jaxws/src/share/jaxws_classes/javax/xml/soap/
H A DSOAPConnection.java34 * not implement this interface in which case the call to
46 * messages are sent using the method <code>call</code>, which sends the
67 public abstract SOAPMessage call(SOAPMessage request, method in class:SOAPConnection
/openjdk7/jdk/test/java/rmi/activation/Activatable/forceLogSnapshot/
H A DForceLogSnapshot_Skel.java41 public void dispatch(java.rmi.Remote obj, java.rmi.server.RemoteCall call, int opnum, long hash) argument
61 call.releaseInputStream();
64 call.getResultStream(true);
76 java.io.ObjectInput in = call.getInputStream();
84 call.releaseInputStream();
88 call.getResultStream(true);
/openjdk7/jdk/test/java/rmi/reliability/benchmark/bench/rmi/
H A DNullCalls.java41 public void call() throws RemoteException; method in interface:NullCalls.Server
48 public void call() throws RemoteException { method in class:NullCalls.ServerImpl
69 stub.call();
H A DBooleanArrayCalls.java42 public boolean[] call(boolean[] a) throws RemoteException; method in interface:BooleanArrayCalls.Server
49 public boolean[] call(boolean[] a) throws RemoteException { method in class:BooleanArrayCalls.ServerImpl
73 stub.call(array);
H A DBooleanCalls.java41 public boolean call(boolean val) throws RemoteException; method in interface:BooleanCalls.Server
48 public boolean call(boolean val) throws RemoteException { method in class:BooleanCalls.ServerImpl
70 stub.call(true);
H A DByteArrayCalls.java42 public byte[] call(byte[] a) throws RemoteException; method in interface:ByteArrayCalls.Server
49 public byte[] call(byte[] a) throws RemoteException { method in class:ByteArrayCalls.ServerImpl
73 stub.call(array);
H A DByteCalls.java41 public byte call(byte val) throws RemoteException; method in interface:ByteCalls.Server
48 public byte call(byte val) throws RemoteException { method in class:ByteCalls.ServerImpl
70 stub.call((byte) 0);
H A DCharArrayCalls.java42 public char[] call(char[] a) throws RemoteException; method in interface:CharArrayCalls.Server
49 public char[] call(char[] a) throws RemoteException { method in class:CharArrayCalls.ServerImpl
73 stub.call(array);
H A DCharCalls.java41 public char call(char val) throws RemoteException; method in interface:CharCalls.Server
48 public char call(char val) throws RemoteException { method in class:CharCalls.ServerImpl
70 stub.call('0');
H A DDoubleArrayCalls.java42 public double[] call(double[] a) throws RemoteException; method in interface:DoubleArrayCalls.Server
49 public double[] call(double[] a) throws RemoteException { method in class:DoubleArrayCalls.ServerImpl
73 stub.call(array);
H A DDoubleCalls.java41 public double call(double val) throws RemoteException; method in interface:DoubleCalls.Server
48 public double call(double val) throws RemoteException { method in class:DoubleCalls.ServerImpl
70 stub.call(0.0);
H A DExceptionCalls.java44 public void call() throws RemoteException, FooException; method in interface:ExceptionCalls.Server
51 public void call() throws RemoteException, FooException { method in class:ExceptionCalls.ServerImpl
74 stub.call();
/openjdk7/jdk/test/java/rmi/server/RemoteObject/notExtending/
H A DNotExtending_Skel.java40 public void dispatch(java.rmi.Remote obj, java.rmi.server.RemoteCall call, int opnum, long hash) argument
/openjdk7/jdk/test/java/rmi/server/serverStackTrace/
H A DImpl1_Skel.java40 public void dispatch(java.rmi.Remote obj, java.rmi.server.RemoteCall call, int opnum, long hash) argument
50 call.releaseInputStream();
53 call.getResultStream(true);
/openjdk7/jdk/test/java/rmi/server/useCustomRef/
H A DUseCustomRef_Skel.java41 public void dispatch(java.rmi.Remote obj, java.rmi.server.RemoteCall call, int opnum, long hash) argument
61 call.releaseInputStream();
64 call.getResultStream(true);
75 java.io.ObjectInput in = call.getInputStream();
82 call.releaseInputStream();
86 call.getResultStream(true);
/openjdk7/jdk/src/share/classes/com/sun/script/javascript/
H A DJavaAdapter.java74 public Object call(Context cx, Scriptable scope, Scriptable thisObj, method in class:JavaAdapter

Completed in 154 milliseconds

12345