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

/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
43 if (opnum < 0) {
51 switch (opnum) {
/openjdk7/jdk/src/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
/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
44 if (opnum < 0) {
46 opnum = 0;
48 opnum = 1;
58 switch (opnum) {
/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
44 if (opnum < 0) {
46 opnum = 0;
48 opnum = 1;
58 switch (opnum) {
/openjdk7/jdk/test/java/rmi/registry/interfaceHash/
H A DInterfaceHash.java116 int opnum;
118 int opnum, long hash)
121 this.opnum = opnum;
161 System.err.println("hash == " + f.hash + ", opnum == " + f.opnum);
164 } else if (f.opnum != 0) {
173 System.err.println("hash == " + f.hash + ", opnum == " + f.opnum);
176 } else if (f.opnum !
[all...]
/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
47 switch (opnum) {
/openjdk7/jdk/src/share/classes/com/sun/jmx/remote/internal/
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
/openjdk7/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
/openjdk7/jdk/src/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);
335 public RemoteCall newCall(RemoteObject obj, Operation[] ops, int opnum, argument
347 logClientCall(obj, ops[opnum]);
351 new StreamRemoteCall(conn, ref.getObjID(), opnum, hash);
115 invoke(Remote obj, Method method, Object[] params, long opnum) argument
H A DActivatableRef.java118 long opnum)
142 return localRef.invoke(obj, method, params, opnum);
313 int opnum,
115 invoke(Remote obj, java.lang.reflect.Method method, Object[] params, long opnum) argument
311 newCall(RemoteObject obj, Operation[] ops, int opnum, long hash) argument
/openjdk7/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
/openjdk7/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
/openjdk7/jdk/src/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...]
/openjdk7/jdk/src/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...]

Completed in 51 milliseconds