Searched defs:id (Results 401 - 425 of 770) sorted by relevance

<<11121314151617181920>>

/openjdk7/jdk/test/javax/management/remote/mandatory/notif/
H A DDeadListenerTest.java214 protected RMIConnection makeClient(String id, Subject subject) throws IOException { argument
215 RMIConnectionImpl conn = (RMIConnectionImpl) super.makeClient(id, subject);
/openjdk7/jdk/src/share/classes/sun/management/jdp/
H A DJdpJmxPacket.java68 private UUID id; field in class:JdpJmxPacket
76 * @param id - java instance id
79 public JdpJmxPacket(UUID id, String jmxServiceUrl) { argument
80 this.id = id;
98 this.id = (sId == null) ? null : UUID.fromString(sId);
123 * @return id of discovery session
126 return id;
163 writer.addEntry(UUID_KEY, (id
[all...]
/openjdk7/jdk/src/share/classes/sun/management/snmp/jvminstr/
H A DJvmThreadInstanceTableMetaImpl.java111 * Translate an Oid to a thread id. Arc follow the long big-endian order.
112 * @param oid The oid to make the id from
113 * @return The thread id.
116 long id = 0;
119 id |= arcs[0] << 56;
120 id |= arcs[1] << 48;
121 id |= arcs[2] << 40;
122 id |= arcs[3] << 32;
123 id |= arcs[4] << 24;
124 id |
332 getThreadInfo(long id) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/management/snmp/jvmmib/
H A DJvmMemGCEntryMeta.java235 * Return the name of the attribute corresponding to the SNMP variable identified by "id".
237 public String getAttributeName(long id) argument
239 switch((int)id) {
H A DJvmMemManagerEntryMeta.java242 * Return the name of the attribute corresponding to the SNMP variable identified by "id".
244 public String getAttributeName(long id) argument
246 switch((int)id) {
H A DJvmMemMgrPoolRelEntryMeta.java227 * Return the name of the attribute corresponding to the SNMP variable identified by "id".
229 public String getAttributeName(long id) argument
231 switch((int)id) {
H A DJvmMemPoolEntryMeta.java507 * Return the name of the attribute corresponding to the SNMP variable identified by "id".
509 public String getAttributeName(long id) argument
511 switch((int)id) {
H A DJvmRTBootClassPathEntryMeta.java230 * Return the name of the attribute corresponding to the SNMP variable identified by "id".
232 public String getAttributeName(long id) argument
234 switch((int)id) {
H A DJvmRTClassPathEntryMeta.java230 * Return the name of the attribute corresponding to the SNMP variable identified by "id".
232 public String getAttributeName(long id) argument
234 switch((int)id) {
H A DJvmRTInputArgsEntryMeta.java230 * Return the name of the attribute corresponding to the SNMP variable identified by "id".
232 public String getAttributeName(long id) argument
234 switch((int)id) {
H A DJvmRTLibraryPathEntryMeta.java230 * Return the name of the attribute corresponding to the SNMP variable identified by "id".
232 public String getAttributeName(long id) argument
234 switch((int)id) {
H A DJvmThreadInstanceEntryMeta.java346 * Return the name of the attribute corresponding to the SNMP variable identified by "id".
348 public String getAttributeName(long id) argument
350 switch((int)id) {
/openjdk7/jdk/src/share/classes/sun/misc/
H A DGC.java204 private long id; field in class:GC.LatencyRequest
213 this.id = ++counter;
246 if (d == 0) d = this.id - r.id;
252 + "[" + latency + "," + id + "]");
/openjdk7/jdk/src/share/classes/sun/rmi/server/
H A DActivationGroupImpl.java77 * @param id the group's identifier
80 public ActivationGroupImpl(ActivationGroupID id, MarshalledObject<?> data) argument
83 super(id);
84 groupID = id;
123 * Obtains a lock on the ActivationID id before returning. Allows only one
124 * thread at a time to hold a lock on a particular id. If the lock for id
126 * id will wait for the id to be notified and use the supplied id a
139 acquireLock(ActivationID id) argument
180 releaseLock(ActivationID id) argument
207 newInstance(final ActivationID id, final ActivationDesc desc) argument
357 inactiveObject(ActivationID id) argument
437 activeObject(ActivationID id, Remote impl) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/rmi/transport/
H A DStreamRemoteCall.java59 public StreamRemoteCall(Connection c, ObjID id, int op, long hash) argument
71 id.write(out); // object id (target of call)
195 out.writeID(); // write id for gcAck
224 in.readID(); // id for DGC acknowledgement
/openjdk7/jdk/src/solaris/classes/sun/nio/fs/
H A DUnixUserPrincipals.java44 private final int id; // uid or gid field in class:UnixUserPrincipals.User
48 private User(int id, boolean isGroup, String name) { argument
49 this.id = id;
54 User(int id, String name) { argument
55 this(id, false, name);
61 return id;
66 return id;
71 return id == -1;
91 if ((this.id !
109 Group(int id, String name) argument
[all...]
/openjdk7/langtools/test/tools/javac/generics/odersky/
H A DBadTest4.java53 static <A> A id(A x) { return x; } method in class:BadTest4.Main
H A DTest4.java50 static <A> A id(A x) { return x; } method in class:Test4
/openjdk7/jdk/test/sun/rmi/rmic/newrmic/equivalence/
H A DDayTimeServerImpl.java58 public DayTimeServerImpl(ActivationID id, MarshalledObject data) argument
60 super(id, 0);
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xs/models/
H A DCMNodeFactory.java92 public CMNode getCMLeafNode(int type, Object leaf, int id, int position) { argument
93 return new XSCMLeaf(type, leaf, id, position) ;
97 int minOccurs, int maxOccurs, int id, int position) {
99 return new XSCMRepeatingLeaf(type, leaf, minOccurs, maxOccurs, id, position);
96 getCMRepeatingLeafNode(int type, Object leaf, int minOccurs, int maxOccurs, int id, int position) argument
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/encoding/
H A DTypeCodeOutputStream.java137 public void addIDAtPosition(String id, int position) { argument
140 //if (TypeCodeImpl.debug) System.out.println(this + " adding id " + id + " at position " + position);
141 typeMap.put(id, new Integer(position));
144 public int getPositionForID(String id) { argument
147 //if (TypeCodeImpl.debug) System.out.println("Getting position " + ((Integer)typeMap.get(id)).intValue() +
148 //" for id " + id);
149 return ((Integer)typeMap.get(id)).intValue();
256 String id
[all...]
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/interceptors/
H A DORBInitInfoImpl.java188 public void register_initial_reference( String id, argument
193 if( id == null ) nullParam();
216 orb.register_initial_reference( id, obj );
235 public org.omg.CORBA.Object resolve_initial_references (String id) argument
239 if( id == null ) nullParam();
253 objRef = orb.resolve_initial_references( id );
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/ior/
H A DIORImpl.java142 * object id to each TaggedProfileTemplate in the IORTemplate.
144 public IORImpl( ORB orb, String typeId, IORTemplate iortemp, ObjectId id) argument
151 addTaggedProfiles( iortemp, id ) ;
156 private void addTaggedProfiles( IORTemplate iortemp, ObjectId id )
165 TaggedProfile profile = ptemp.create( oktemp, id ) ;
172 * object id to each TaggedProfileTemplate in the IORTemplate.
174 public IORImpl( ORB orb, String typeId, IORTemplateList iortemps, ObjectId id) argument
183 addTaggedProfiles( iortemp, id ) ;
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/oa/poa/
H A DActiveObjectMap.java48 public byte[] id; field in class:ActiveObjectMap.Key
50 Key(byte[] id) { argument
51 this.id = id;
56 for(int i = 0; i < id.length; i++) {
57 buffer.append(Integer.toString((int) id[i], 16));
58 if (i != id.length-1)
68 if (k.id.length != this.id.length)
70 for(int i = 0; i < this.id
[all...]
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/presentation/rmi/
H A DExceptionHandlerImpl.java73 private String id ; field in class:ExceptionHandlerImpl.ExceptionRWBase
87 return id ;
90 void setId( String id )
92 this.id = id ;
111 Method idMethod = helperClass.getDeclaredMethod( "id", (Class[])null ) ;

Completed in 78 milliseconds

<<11121314151617181920>>