Searched defs:call (Results 26 - 50 of 105) sorted by relevance

12345

/openjdk7/jdk/test/java/rmi/reliability/benchmark/bench/rmi/
H A DFloatArrayCalls.java42 public float[] call(float[] a) throws RemoteException; method in interface:FloatArrayCalls.Server
49 public float[] call(float[] a) throws RemoteException { method in class:FloatArrayCalls.ServerImpl
73 stub.call(array);
H A DFloatCalls.java41 public float call(float val) throws RemoteException; method in interface:FloatCalls.Server
48 public float call(float val) throws RemoteException { method in class:FloatCalls.ServerImpl
70 stub.call((float) 0.0);
H A DIntArrayCalls.java42 public int[] call(int[] a) throws RemoteException; method in interface:IntArrayCalls.Server
49 public int[] call(int[] a) throws RemoteException { method in class:IntArrayCalls.ServerImpl
73 stub.call(array);
H A DIntCalls.java41 public int call(int val) throws RemoteException; method in interface:IntCalls.Server
48 public int call(int val) throws RemoteException { method in class:IntCalls.ServerImpl
70 stub.call(0);
H A DLongArrayCalls.java42 public long[] call(long[] a) throws RemoteException; method in interface:LongArrayCalls.Server
49 public long[] call(long[] a) throws RemoteException { method in class:LongArrayCalls.ServerImpl
73 stub.call(array);
H A DLongCalls.java41 public long call(long val) throws RemoteException; method in interface:LongCalls.Server
48 public long call(long val) throws RemoteException { method in class:LongCalls.ServerImpl
70 stub.call(0L);
H A DRemoteObjArrayCalls.java47 public Remote[] call(Remote[] a) throws RemoteException; method in interface:RemoteObjArrayCalls.Server
54 public Remote[] call(Remote[] a) throws RemoteException { method in class:RemoteObjArrayCalls.ServerImpl
80 stub.call(objs);
H A DShortArrayCalls.java42 public short[] call(short[] a) throws RemoteException; method in interface:ShortArrayCalls.Server
49 public short[] call(short[] a) throws RemoteException { method in class:ShortArrayCalls.ServerImpl
73 stub.call(array);
H A DShortCalls.java41 public short call(short val) throws RemoteException; method in interface:ShortCalls.Server
48 public short call(short val) throws RemoteException { method in class:ShortCalls.ServerImpl
70 stub.call((short) 0);
H A DSmallObjTreeCalls.java55 public Node call(Node val) throws RemoteException; method in interface:SmallObjTreeCalls.Server
62 public Node call(Node val) throws RemoteException { method in class:SmallObjTreeCalls.ServerImpl
86 stub.call(node);
H A DProxyArrayCalls.java59 public Proxy[] call(Proxy[] a) throws RemoteException; method in interface:ProxyArrayCalls.Server
66 public Proxy[] call(Proxy[] a) throws RemoteException { method in class:ProxyArrayCalls.ServerImpl
108 stub.call(proxies);
H A DObjArrayCalls.java64 public Node[] call(Node[] a) throws RemoteException; method in interface:ObjArrayCalls.Server
71 public Node[] call(Node[] a) throws RemoteException { method in class:ObjArrayCalls.ServerImpl
97 stub.call(nodes);
H A DObjTreeCalls.java64 public Node call(Node val) throws RemoteException; method in interface:ObjTreeCalls.Server
71 public Node call(Node val) throws RemoteException { method in class:ObjTreeCalls.ServerImpl
95 stub.call(node);
/openjdk7/jdk/test/java/util/concurrent/ExecutorCompletionService/
H A DExecutorCompletionServiceLoops.java75 public Integer call() { method in class:ExecutorCompletionServiceLoops.Task
/openjdk7/jdk/test/java/util/concurrent/FutureTask/
H A DCancelledFutureLoops.java126 public final Object call() throws Exception { method in class:CancelledFutureLoops.FutureLoop
/openjdk7/langtools/src/share/classes/com/sun/tools/javah/
H A DNativeHeaderTool.java112 * task has not yet started. To start the task, call
113 * the {@linkplain #call call} method.
115 * <p>Before calling the call method, additional aspects of the
145 Boolean call(); method in interface:NativeHeaderTool.NativeHeaderTask
/openjdk7/langtools/src/share/classes/com/sun/tools/javap/
H A DDisassemblerTool.java115 * task has not yet started. To start the task, call
116 * the {@linkplain #call call} method.
118 * <p>Before calling the call method, additional aspects of the
148 Boolean call(); method in interface:DisassemblerTool.DisassemblerTask
/openjdk7/langtools/src/share/classes/javax/tools/
H A DJavaCompiler.java119 * compiler.getTask(null, fileManager, null, null, null, compilationUnits1).call();
124 * compiler.getTask(null, fileManager, null, null, null, compilationUnits2).call();
138 * compiler.getTask(null, fileManager, diagnostics, null, null, compilationUnits).call();
174 * compiler.getTask(null, fileManager, null, null, null, compilationUnits).call();</pre>
291 * compilation task has not yet started. To start the task, call
292 * the {@linkplain #call call} method.
294 * <p>Before calling the call method, additional aspects of the
333 Boolean call(); method in interface:JavaCompiler.CompilationTask
/openjdk7/jdk/test/java/util/concurrent/BlockingQueue/
H A DCancelledProducerConsumerLoops.java151 public Integer call() throws Exception { method in class:CancelledProducerConsumerLoops.Producer
170 public Integer call() throws Exception { method in class:CancelledProducerConsumerLoops.Consumer
/openjdk7/jdk/src/share/classes/sun/invoke/util/
H A DVerifyType.java44 * @param call the type of a stacked value
71 * @param call the type of a stacked value
108 * True if a method handle can receive a call under a slightly different
111 * @param call the type of call being made
112 * @param recv the type of the method handle receiving the call
115 public static boolean isNullConversion(MethodType call, MethodType recv) { argument
116 if (call == recv) return true;
117 int len = call.parameterCount();
120 if (!isNullConversion(call
[all...]
/openjdk7/jdk/src/share/classes/sun/rmi/transport/
H A DTransport.java64 /** References the current transport when a call is being serviced */
103 * Returns the current transport if a call is being serviced, otherwise
114 * an additional call to AccessController.getContext.
119 * Service an incoming remote call. When a message arrives on the
120 * connection indicating the beginning of a remote call, the
121 * threads are required to call the <I>serviceCall</I> method of
132 * occurred during the call, and the transport should destroy the
135 public boolean serviceCall(final RemoteCall call) { argument
142 id = ObjID.read(call.getInputStream());
159 /* call th
[all...]
/openjdk7/jdk/src/share/classes/java/rmi/server/
H A DRemoteRef.java60 * throws a RemoteException if the call failed or an
81 * Creates an appropriate call object for a new remote method
85 * encode in the call.
96 * @param obj remote stub through which to make call
100 * @return call object representing remote call
101 * @throws RemoteException if failed to initiate new remote call
109 * Executes the remote call.
126 * @param call object representing remote call
131 invoke(RemoteCall call) argument
152 done(RemoteCall call) argument
[all...]
/openjdk7/jdk/src/share/classes/com/sun/jmx/remote/internal/
H A DProxyRef.java59 public void invoke(java.rmi.server.RemoteCall call) throws Exception { argument
60 ref.invoke(call);
72 public void done(java.rmi.server.RemoteCall call) throws RemoteException { argument
73 ref.done(call);
/openjdk7/jdk/test/java/rmi/activation/Activatable/notSerializable/
H A DNotSerializable.java122 public void invoke(RemoteCall call) { argument
126 public void done(RemoteCall call) { argument
/openjdk7/jdk/test/java/rmi/server/RemoteObject/unrecognizedRefType/
H A DUnrecognizedRefType.java113 public void invoke(RemoteCall call) { argument
117 public void done(RemoteCall call) { argument

Completed in 108 milliseconds

12345