Searched refs:stub (Results 1 - 25 of 192) sorted by relevance

12345678

/openjdk9/jdk/test/java/rmi/registry/emptyName/
H A DEmptyName.java42 Registry stub = (Registry) RemoteObject.toStub(impl);
43 stub.bind("", stub);
44 stub.lookup("");
45 stub.rebind("", stub);
46 stub.lookup("");
47 stub.unbind("");
/openjdk9/jdk/test/java/rmi/module/src/mclient/clientpkg/
H A DClient.java33 Hello stub; field in class:Client
35 public Client(Hello stub) { argument
36 this.stub = stub;
41 return stub.sayHello();
/openjdk9/jdk/test/java/rmi/server/RemoteObject/notExtending/
H A DNotExtending.java42 /** remote stub for this server instance */
43 private Remote stub; field in class:NotExtending
44 /** value of stub's hash code */
52 stub = UnicastRemoteObject.exportObject(this);
53 setHashValue(stub.hashCode());
54 return stub;
79 return stub.equals(obj);
91 Remote stub = server.export();
95 * Verify that passing stub to server's equals() method
98 if (server.equals(stub)) {
[all...]
/openjdk9/jdk/test/javax/sound/sampled/AudioFormat/
H A DEncodingEqualsToNull.java40 final Object stub = new Object() {
46 if (stub.equals(enc) || enc.equals(stub)) {
/openjdk9/jdk/test/javax/sound/sampled/AudioFileFormat/
H A DTypeEqualsToNull.java40 final Object stub = new Object() {
46 if (stub.equals(type) || type.equals(stub)) {
/openjdk9/hotspot/src/cpu/x86/vm/
H A DcompiledIC_aot_x86_64.cpp29 address stub = find_stub(true /* is_far */); local
30 guarantee(stub != NULL, "stub not found");
42 NativeMovConstReg* destination_holder = nativeMovConstReg_at(stub);
51 // Update stub.
55 set_destination_mt_safe(stub);
59 address stub = find_stub(); local
60 guarantee(stub != NULL, "stub not found");
69 NativeLoadGot* method_loader = nativeLoadGot_at(stub);
91 address stub = static_stub->addr(); local
112 address stub = find_stub(); local
[all...]
/openjdk9/corba/src/java.corba/share/classes/com/sun/corba/se/spi/presentation/rmi/
H A DStubAdapter.java51 /** Provide access to stub delegate and type id information
52 * independent of the stub type. This class exists because
72 public static boolean isStub( Object stub )
74 return (stub instanceof DynamicStub) ||
75 (stub instanceof ObjectImpl) ;
78 public static void setDelegate( Object stub, Delegate delegate ) argument
80 if (stub instanceof DynamicStub)
81 ((DynamicStub)stub).setDelegate( delegate ) ;
82 else if (stub instanceof ObjectImpl)
83 ((ObjectImpl)stub)
173 connect( Object stub, ORB orb ) argument
197 request( Object stub, String operation, boolean responseExpected ) argument
[all...]
/openjdk9/jaxws/src/java.xml.ws/share/classes/com/sun/xml/internal/ws/client/
H A DMonitorRootClient.java50 private final Stub stub; field in class:MonitorRootClient
52 MonitorRootClient(final Stub stub) { argument
53 this.stub = stub;
58 com.sun.xml.internal.ws.util.Constants.LoggingDomain + ".client.stub");
66 private Container getContainer() { return stub.owner.getContainer(); }
69 private Map<QName, PortInfo> qnameToPortInfoMap() { return stub.owner.getQNameToPortInfoMap(); }
72 private QName serviceName() { return stub.owner.getServiceName(); }
75 private Class serviceClass() { return stub.owner.getServiceClass(); }
78 private URL wsdlDocumentLocation() { return stub
[all...]
/openjdk9/hotspot/src/jdk.aot/share/classes/jdk.tools.jaotc/src/jdk/tools/jaotc/amd64/
H A DAMD64ELFMacroAssembler.java64 public byte[] getPLTStaticEntryCode(StubInformation stub) { argument
68 stub.setDispatchJumpOffset(position());
70 // C2I stub used to call interpreter.
73 stub.setMovOffset(position());
77 stub.setC2IJumpOffset(position());
81 stub.setResolveJumpStart(position());
83 stub.setResolveJumpOffset(position());
88 stub.setSize(position());
94 public byte[] getPLTVirtualEntryCode(StubInformation stub) { argument
98 stub
[all...]
/openjdk9/hotspot/src/jdk.aot/share/classes/jdk.tools.jaotc/src/jdk/tools/jaotc/
H A DAOTStub.java35 private final Stub stub; field in class:AOTStub
38 public AOTStub(Stub stub, Backend backend) { argument
39 this.stub = stub;
44 return stub.toString();
48 return stub.toString();
/openjdk9/hotspot/src/share/vm/c1/
H A Dc1_Runtime1.hpp40 #define RUNTIME1_STUBS(stub, last_entry) \
41 stub(dtrace_object_alloc) \
42 stub(unwind_exception) \
43 stub(forward_exception) \
44 stub(throw_range_check_failed) /* throws ArrayIndexOutOfBoundsException */ \
45 stub(throw_index_exception) /* throws IndexOutOfBoundsException */ \
46 stub(throw_div0_exception) \
47 stub(throw_null_pointer_exception) \
48 stub(register_finalizer) \
49 stub(new_instanc
[all...]
/openjdk9/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/nodes/
H A DStubStartNode.java40 protected final Stub stub; field in class:StubStartNode
42 public StubStartNode(Stub stub) { argument
44 this.stub = stub;
48 return stub;
/openjdk9/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/stubs/
H A DStubCompilationIdentifier.java31 * {@link CompilationIdentifier} for {@linkplain Stub stub compilations}.
37 private final Stub stub; field in class:StubCompilationIdentifier
39 public StubCompilationIdentifier(Stub stub) { argument
41 this.stub = stub;
63 return stub.toString();
/openjdk9/hotspot/src/cpu/ppc/vm/
H A DcompiledIC_ppc.cpp56 // trampoline stub: | <-+
72 // - branches to the trampoline stub if offset to compiled method not encodable
73 // - branches to the compiled_to_interp stub if target interpreted
90 // That's why we must use the macroassembler to generate a stub.
93 // Start the stub.
94 address stub = __ start_a_stub(CompiledStaticCall::to_interp_stub_size()); local
95 if (stub == NULL) {
104 // Create a static stub relocation which relates this stub
110 // Now, create the stub'
167 address stub = find_stub(/*is_aot*/ false); local
202 address stub = static_stub->addr(); local
223 address stub = find_stub(/*is_aot*/ false); local
[all...]
/openjdk9/hotspot/src/cpu/s390/vm/
H A DcompiledIC_s390.cpp54 // That's why we must use the macroassembler to generate a stub.
57 address stub = __ start_a_stub(Compile::MAX_stubs_size); local
58 if (stub == NULL) {
75 return stub;
88 // Relocation entries for call stub, compiled java to interpreter.
94 address stub = find_stub(/*is_aot*/ false); local
95 guarantee(stub != NULL, "stub not found");
105 NativeMovConstReg* method_holder = nativeMovConstReg_at(stub + NativeCall::get_IC_pos_in_java_to_interp_stub());
118 // Update stub
129 address stub = static_stub->addr(); local
150 address stub = find_stub(/*is_aot*/ false); local
[all...]
/openjdk9/corba/src/java.corba/share/classes/com/sun/corba/se/impl/presentation/rmi/
H A DStubFactoryStaticImpl.java44 org.omg.CORBA.Object stub = null;
46 stub = (org.omg.CORBA.Object) stubClass.newInstance();
52 return stub ;
H A DInvocationHandlerFactoryImpl.java74 private transient DynamicStub stub ; field in class:InvocationHandlerFactoryImpl.CustomCompositeInvocationHandlerImpl
78 ((DynamicStubImpl)stub).setSelf( (DynamicStub)proxy ) ;
83 return (Proxy)((DynamicStubImpl)stub).getSelf() ;
86 public CustomCompositeInvocationHandlerImpl( DynamicStub stub )
88 this.stub = stub ;
91 /** Return the stub, which will actually be written to the stream.
100 return stub ;
106 final DynamicStub stub = new DynamicStubImpl(
109 return getInvocationHandler( stub ) ;
[all...]
/openjdk9/jdk/src/java.rmi/share/classes/java/rmi/server/
H A DRemoteStub.java40 * for information about dynamic stub generation.
69 * @param stub the remote stub
75 * stub. This is unnecessary, since {@code RemoteStub}s can be created
80 protected static void setRef(RemoteStub stub, RemoteRef ref) { argument
/openjdk9/hotspot/src/cpu/aarch64/vm/
H A DcompiledIC_aarch64.cpp49 // That's why we must use the macroassembler to generate a stub.
57 // static stub relocation stores the instruction address of the call
59 // static stub relocation also tags the Method* in the code-stream.
64 assert((__ offset() - offset) <= (int)to_interp_stub_size(), "stub too big");
74 // Relocation entries for call stub, compiled java to interpreter.
80 address stub = find_stub(false /* is_aot */); local
81 guarantee(stub != NULL, "stub not found");
91 NativeMovConstReg* method_holder = nativeMovConstReg_at(stub);
102 // Update stub
113 address stub = static_stub->addr(); local
132 address stub = find_stub(false /* is_aot */); local
[all...]
/openjdk9/hotspot/src/cpu/arm/vm/
H A DcompiledIC_arm.cpp38 // emit call stub, compiled java to interpreter
56 // static stub relocation stores the instruction address of the call
80 assert(__ pc() - base <= to_interp_stub_size(), "wrong stub size");
88 // Relocation entries for call stub, compiled java to interpreter.
94 // size of C2 call stub, compiled java to interpretor
100 address stub = find_stub(/*is_aot*/ false); local
101 guarantee(stub != NULL, "stub not found");
111 NativeMovConstReg* method_holder = nativeMovConstReg_at(stub);
124 // Update stub
137 address stub = static_stub->addr(); local
158 address stub = find_stub(/*is_aot*/ false); local
[all...]
/openjdk9/jdk/test/java/rmi/registry/readTest/testPkg/
H A DClient.java39 Hello stub = (Hello) registry.lookup("Hello");
40 String response = stub.sayHello();
/openjdk9/hotspot/src/cpu/sparc/vm/
H A DcompiledIC_sparc.cpp57 // Static stub relocation stores the instruction address of the call.
68 assert(__ pc() - base <= to_interp_stub_size(), "wrong stub size");
78 // the real size of the stub.
83 // Relocation entries for call stub, compiled java to interpreter.
89 address stub = find_stub(/*is_aot*/ false); local
90 guarantee(stub != NULL, "stub not found");
100 NativeMovConstReg* method_holder = nativeMovConstReg_at(stub);
113 // Update stub.
118 set_destination_mt_safe(stub);
124 address stub = static_stub->addr(); local
145 address stub = find_stub(/*is_aot*/ false); local
[all...]
/openjdk9/jdk/test/java/rmi/server/RemoteObject/toStub/
H A DToStub.java54 RemoteInterface stub = null;
67 stub = (RemoteInterface) UnicastRemoteObject.exportObject(server1);
72 if (stub != RemoteObject.toStub(server1)) {
89 "stub returned for exported object!");
94 Object obj = stub.passObject(stub);
95 if (!stub.equals(obj)) {
96 throw new RuntimeException("returned stub not equal");
107 if (stub != null) {
/openjdk9/jdk/src/java.desktop/share/classes/java/applet/
H A DApplet.java86 * The stub field will be restored by the reader.
88 private transient AppletStub stub; field in class:Applet
112 * Sets this applet's stub. This is done automatically by the system.
116 * permission if a stub has already been set.
117 * @param stub the new stub.
118 * @exception SecurityException if the caller cannot set the stub
120 public final void setStub(AppletStub stub) { argument
121 if (this.stub != null) {
127 this.stub
[all...]
/openjdk9/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/
H A DHotSpotLIRGenerationResult.java44 * deoptimization stub.
47 protected final Object stub; field in class:HotSpotLIRGenerationResult
57 public HotSpotLIRGenerationResult(CompilationIdentifier compilationId, LIR lir, FrameMapBuilder frameMapBuilder, CallingConvention callingConvention, Object stub) { argument
59 this.stub = stub;
67 return (Stub) stub;

Completed in 480 milliseconds

12345678