Searched refs:opnum (Results 1 - 17 of 17) sorted by relevance

/openjdk9/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
43 if (opnum < 0) {
51 switch (opnum) {
/openjdk9/jdk/src/java.rmi/share/classes/java/rmi/server/
H A DSkeleton.java52 * @param opnum operation number
59 void dispatch(Remote obj, RemoteCall theCall, int opnum, long hash) argument
H A DRemoteRef.java68 * @param opnum a hash that may be used to represent the method
77 long opnum)
98 * @param opnum operation number
105 RemoteCall newCall(RemoteObject obj, Operation[] op, int opnum, long hash) argument
74 invoke(Remote obj, java.lang.reflect.Method method, Object[] params, long opnum) argument
/openjdk9/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
44 if (opnum < 0) {
46 opnum = 0;
48 opnum = 1;
58 switch (opnum) {
/openjdk9/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
44 if (opnum < 0) {
46 opnum = 0;
48 opnum = 1;
58 switch (opnum) {
/openjdk9/jdk/test/java/rmi/registry/interfaceHash/
H A DInterfaceHash.java120 int opnum;
122 int opnum, long hash)
125 this.opnum = opnum;
165 System.err.println("hash == " + f.hash + ", opnum == " + f.opnum);
168 } else if (f.opnum != 0) {
177 System.err.println("hash == " + f.hash + ", opnum == " + f.opnum);
180 } else if (f.opnum !
[all...]
/openjdk9/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
47 switch (opnum) {
/openjdk9/jdk/src/java.management.rmi/share/classes/com/sun/jmx/remote/internal/rmi/
H A DProxyRef.java64 long opnum) throws Exception {
65 return ref.invoke(obj, method, params, opnum);
85 java.rmi.server.Operation[] op, int opnum,
87 return ref.newCall(obj, op, opnum, hash);
63 invoke(Remote obj, Method method, Object[] params, long opnum) argument
84 newCall(RemoteObject obj, java.rmi.server.Operation[] op, int opnum, long hash) argument
/openjdk9/jdk/test/java/rmi/server/RemoteObject/unrecognizedRefType/
H A DUnrecognizedRefType.java100 long opnum)
107 int opnum,
97 invoke(Remote obj, Method method, Object[] params, long opnum) argument
105 newCall(RemoteObject obj, Operation[] op, int opnum, long hash) argument
/openjdk9/jdk/src/java.rmi/share/classes/sun/rmi/server/
H A DUnicastRef.java112 * @param opnum a hash that may be used to represent the method
118 long opnum)
140 clientRefLog.log(Log.VERBOSE, "opnum = " + opnum);
144 call = new StreamRemoteCall(conn, ref.getObjID(), -1, opnum);
332 public RemoteCall newCall(RemoteObject obj, Operation[] ops, int opnum, argument
344 logClientCall(obj, ops[opnum]);
348 new StreamRemoteCall(conn, ref.getObjID(), opnum, hash);
115 invoke(Remote obj, Method method, Object[] params, long opnum) argument
H A DActivatableRef.java119 long opnum)
143 return localRef.invoke(obj, method, params, opnum);
314 int opnum,
116 invoke(Remote obj, java.lang.reflect.Method method, Object[] params, long opnum) argument
312 newCall(RemoteObject obj, Operation[] ops, int opnum, long hash) argument
/openjdk9/jdk/src/java.rmi/share/classes/sun/rmi/transport/
H A DDGCImpl_Skel.java46 public void dispatch(java.rmi.Remote obj, java.rmi.server.RemoteCall call, int opnum, long hash) argument
52 switch (opnum) {
/openjdk9/jdk/test/java/rmi/activation/Activatable/notSerializable/
H A DNotSerializable.java109 long opnum)
116 int opnum,
106 invoke(Remote obj, Method method, Object[] params, long opnum) argument
114 newCall(RemoteObject obj, Operation[] op, int opnum, long hash) argument
/openjdk9/jdk/test/sun/rmi/rmic/minimizeWrapperInstances/
H A DTest.java89 long opnum)
96 int opnum,
86 invoke(Remote obj, Method method, Object[] args, long opnum) argument
94 newCall(RemoteObject obj, Operation[] op, int opnum, long hash) argument
/openjdk9/jdk/src/jdk.rmic/share/classes/sun/rmi/rmic/newrmic/jrmp/
H A DStubSkeletonWriter.java282 private void writeStubMethod(IndentingWriter p, int opnum) argument
285 RemoteClass.Method method = remoteMethods[opnum];
358 p.p("ref.invoke(this, " + methodFieldNames[opnum] + ", ");
383 ") this, operations, " + opnum + ", interfaceHash);");
568 REMOTE_CALL + " call, int opnum, long hash)");
573 p.plnI("if (opnum < 0) {");
575 for (int opnum = 0; opnum < remoteMethods.length; opnum++) {
576 if (opnum >
653 writeSkeletonDispatchCase(IndentingWriter p, int opnum) argument
[all...]
/openjdk9/jdk/src/jdk.rmic/share/classes/sun/rmi/rmic/
H A DRMIGenerator.java468 * Write the stub method for the remote method with the given "opnum".
470 private void writeStubMethod(IndentingWriter p, int opnum) argument
473 RemoteClass.Method method = remoteMethods[opnum];
542 p.p("ref.invoke(this, " + methodFieldNames[opnum] + ", ");
567 ") this, operations, " + opnum + ", interfaceHash);");
766 idRemoteCall + " call, int opnum, long hash)");
771 p.plnI("if (opnum < 0) {");
773 for (int opnum = 0; opnum < remoteMethods.length; opnum
841 writeSkeletonDispatchCase(IndentingWriter p, int opnum) argument
[all...]
/openjdk9/jdk/src/java.rmi/share/classes/sun/rmi/registry/
H A DRegistryImpl_Skel.java59 public void dispatch(java.rmi.Remote obj, java.rmi.server.RemoteCall call, int opnum, long hash) argument
65 switch (opnum) {

Completed in 190 milliseconds