Searched defs:id (Results 51 - 75 of 770) sorted by relevance

1234567891011>>

/openjdk7/jdk/test/java/rmi/activation/Activatable/checkRegisterInLog/
H A DCheckRegisterInLog.java48 public CheckRegisterInLog(ActivationID id, MarshalledObject obj) argument
51 super(id, 0);
/openjdk7/jdk/test/java/rmi/activation/Activatable/createPrivateActivable/
H A DCreatePrivateActivatable.java52 private PrivateActivatable(ActivationID id, MarshalledObject obj) argument
55 super(id, 0);
/openjdk7/jdk/test/java/rmi/activation/Activatable/elucidateNoSuchMethod/
H A DElucidateNoSuchMethod.java50 ElucidateNoSuchMethod(ActivationID id, int port) argument
53 super(id, port);
/openjdk7/jdk/test/java/rmi/activation/Activatable/inactiveGroup/
H A DInactiveGroup.java47 private ActivationID id; field in class:InactiveGroup
49 public InactiveGroup(ActivationID id, MarshalledObject obj) argument
52 this.id = id;
53 Activatable.exportObject(this, id, 0);
68 return id;
/openjdk7/jdk/test/java/rmi/activation/Activatable/nonExistentActivatable/
H A DNonExistentActivatable.java48 public NonExistentActivatable(ActivationID id, MarshalledObject obj) argument
51 super(id, 0);
/openjdk7/jdk/src/share/doc/stub/java/rmi/activation/
H A DActivationGroup_Stub.java54 * argument (with <code>id</code> as the first element and
64 * @param id an activation identifier
73 java.rmi.activation.ActivationID id,
72 newInstance( java.rmi.activation.ActivationID id, java.rmi.activation.ActivationDesc desc) argument
/openjdk7/jdk/test/java/rmi/activation/Activatable/unregisterInactive/
H A DUnregisterInactive.java47 public UnregisterInactive(ActivationID id, MarshalledObject obj) argument
50 super(id, 0);
/openjdk7/jdk/test/java/rmi/activation/ActivationGroup/downloadActivationGroup/
H A DDownloadActivationGroup.java53 private ActivationID id; field in class:DownloadActivationGroup
55 public DownloadActivationGroup(ActivationID id, MarshalledObject mobj) argument
58 this.id = id;
59 Activatable.exportObject(this, id, 0);
91 return id;
/openjdk7/jdk/test/java/rmi/activation/CommandEnvironment/
H A DDoctor.java32 public Doctor(ActivationID id, MarshalledObject blah) argument
35 super(id, 0); // export self on port 0 (== assign randomly)
/openjdk7/jdk/src/share/classes/sun/rmi/transport/
H A DObjectEndpoint.java37 private final ObjID id; field in class:ObjectEndpoint
41 * Constructs a new ObjectEndpoint instance with the specified id and
42 * transport. The specified id must be non-null, and the specified
43 * transport must either be non-null or the specified id must be
46 * @param id the object identifier
48 * @throws NullPointerException if id is null
50 ObjectEndpoint(ObjID id, Transport transport) { argument
51 if (id == null) {
54 assert transport != null || id.equals(new ObjID(ObjID.DGC_ID));
56 this.id
[all...]
/openjdk7/jdk/src/share/classes/sun/rmi/transport/tcp/
H A DMultiplexConnectionInfo.java36 int id; field in class:MultiplexConnectionInfo
49 * @param id connection identifier
51 MultiplexConnectionInfo(int id) argument
53 this.id = id;
/openjdk7/langtools/test/tools/javac/generics/odersky/
H A DBadTest.java39 static <A> A id(A x) { return x; } method in class:BadTest.Main
44 List<String> xs = id(nil());
45 List<String> ys = cons("abc", id(nil()));
46 List<String> zs = id(nil()).prepend("abc");
47 List<Cell<String>> us = id(nil()).prepend(makeCell(null));
48 List<Cell<String>> vs = cons(makeCell(null), id(nil()));
H A DTest.java38 static <A> A id(A x) { return x; } method in class:Test
53 System.out.println(id(nil()));
54 System.out.println(id(nil()).length());
56 System.out.println(cons("abc", id(nil())));
57 System.out.println(id(nil()).prepend("abc"));
58 System.out.println(id(nil()).prepend(makeCell(null)));
59 System.out.println(cons(makeCell(null), id(nil())));
H A DTest2.java40 static <A> A id(A x) { return x; } method in class:Test2
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/corba/
H A DTypeCodeFactory.java29 void setTypeCode(String id, TypeCodeImpl code); argument
31 TypeCodeImpl getTypeCode(String id); argument
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/interceptors/
H A DSlotTable.java59 * This method sets the slot data at the given slot id (index).
61 public void set_slot( int id, Any data ) throws InvalidSlot argument
65 if( id >= theSlotData.length ) {
69 theSlotData[id] = data;
73 * This method get the slot data for the given slot id (index).
75 public Any get_slot( int id ) throws InvalidSlot
79 if( id >= theSlotData.length ) {
82 if( theSlotData[id] == null ) {
83 theSlotData [id] = new AnyImpl(orb);
85 return theSlotData[ id ];
[all...]
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/ior/
H A DObjectIdImpl.java37 private byte[] id; field in class:ObjectIdImpl
46 return Arrays.equals( this.id, other.id ) ;
52 for (int ctr=0; ctr<id.length; ctr++)
53 result = 37*result + id[ctr] ;
57 public ObjectIdImpl( byte[] id )
59 this.id = id ;
64 return id ;
69 os.write_long( id
[all...]
H A DObjectKeyImpl.java46 private ObjectId id; field in class:ObjectKeyImpl
59 id.equals( other.id ) ;
64 return oktemp.hashCode() ^ id.hashCode() ;
74 return id ;
77 public ObjectKeyImpl( ObjectKeyTemplate oktemp, ObjectId id )
80 this.id = id ;
85 oktemp.write( id, os ) ;
98 return oktemp.getServerRequestDispatcher( orb, id ) ;
[all...]
H A DTaggedComponentFactoryFinderImpl.java57 public Identifiable handleMissingFactory( int id, InputStream is ) { argument
58 return new GenericTaggedComponent( id, is ) ;
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/naming/pcosnaming/
H A DInternalBindingKey.java37 * the lengths of the id and kind strings for faster comparison.
46 public String id; field in class:InternalBindingKey
60 this.id = n.id;
64 // Compare the keys by comparing name's id and kind
70 if( this.id != null && that.id != null )
72 if (this.id.length() != that.id.length() )
76 // If id i
[all...]
/openjdk7/corba/src/share/classes/com/sun/corba/se/spi/ior/
H A DEncapsulationFactoryBase.java33 private int id ; field in class:EncapsulationFactoryBase
37 return id ;
40 public EncapsulationFactoryBase( int id )
42 this.id = id ;
H A DIdentifiableFactoryFinder.java38 /** If there is a registered factory for id, use it to
44 Identifiable create(int id, InputStream is); argument
46 /** Register a factory for the given id.
H A DTaggedProfileTemplate.java50 * identifier id. It is not possible to modify the list through this
53 public Iterator iteratorById( int id ) ;
57 TaggedProfile create( ObjectKeyTemplate oktemp, ObjectId id ) ;
59 /** Write the profile create( oktemp, id ) to the OutputStream os.
61 void write( ObjectKeyTemplate oktemp, ObjectId id, OutputStream os) ; argument
77 ORB orb, int id );
/openjdk7/corba/src/share/classes/com/sun/corba/se/spi/orbutil/threadpool/
H A DThreadPoolChooser.java42 * by using the id argument passed to it. This method will be used in
43 * situations where the threadpool id is known to the caller e.g. by the
44 * connection object or looking at the high order bits of the request id
46 public ThreadPool getThreadPool(int id); argument
/openjdk7/corba/src/share/classes/com/sun/corba/se/spi/servicecontext/
H A DUnknownServiceContext.java35 public UnknownServiceContext( int id, byte[] data ) argument
37 this.id = id ;
41 public UnknownServiceContext( int id, InputStream is ) argument
43 this.id = id ;
50 public int getId() { return id ; }
59 os.write_long( id ) ;
69 private int id = -1 ; field in class:UnknownServiceContext

Completed in 140 milliseconds

1234567891011>>