Searched defs:id (Results 426 - 450 of 770) sorted by relevance

<<11121314151617181920>>

/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/transport/
H A DCorbaTransportManagerImpl.java87 public ByteBufferPool getByteBufferPool(int id) argument
156 public Selector getSelector(int id) argument
/openjdk7/corba/src/share/classes/com/sun/corba/se/spi/servicecontext/
H A DServiceContexts.java115 dprint("Reading service context id " + scId);
299 Integer id = (Integer)iter.next();
301 writeMapEntry(os, id, scMap.get(id), gv);
319 private void writeMapEntry(OutputStream os, Integer id, Object scObj, GIOPVersion gv) { argument
327 dprint( "Writing service context bytes for id " + id);
345 * a service context in this object with the same id as sc.
349 Integer id = new Integer(sc.getId());
350 scMap.put(id, s
357 delete(Integer id) argument
366 get(Integer id) argument
[all...]
/openjdk7/corba/src/share/classes/com/sun/org/omg/CORBA/ValueDefPackage/
H A DFullValueDescription.java40 public String id = null; field in class:FullValueDescription
68 id = _id;
/openjdk7/corba/src/share/classes/com/sun/tools/corba/se/idl/
H A DDefaultSymtabFactory.java51 public AttributeEntry attributeEntry (InterfaceEntry container, IDLID id) argument
53 return new AttributeEntry (container, id);
61 public ConstEntry constEntry (SymtabEntry container, IDLID id) argument
63 return new ConstEntry (container, id);
71 public NativeEntry nativeEntry (SymtabEntry container, IDLID id) argument
73 return new NativeEntry (container, id);
81 public EnumEntry enumEntry (SymtabEntry container, IDLID id) argument
83 return new EnumEntry (container, id);
91 public ExceptionEntry exceptionEntry (SymtabEntry container, IDLID id) argument
93 return new ExceptionEntry (container, id);
101 forwardEntry(ModuleEntry container, IDLID id) argument
111 forwardValueEntry(ModuleEntry container, IDLID id) argument
131 interfaceEntry(ModuleEntry container, IDLID id) argument
141 valueEntry(ModuleEntry container, IDLID id) argument
151 valueBoxEntry(ModuleEntry container, IDLID id) argument
161 methodEntry(InterfaceEntry container, IDLID id) argument
171 moduleEntry(ModuleEntry container, IDLID id) argument
181 parameterEntry(MethodEntry container, IDLID id) argument
217 sequenceEntry(SymtabEntry container, IDLID id) argument
232 structEntry(SymtabEntry container, IDLID id) argument
242 typedefEntry(SymtabEntry container, IDLID id) argument
252 unionEntry(SymtabEntry container, IDLID id) argument
[all...]
H A DSymtabFactory.java45 * <li>the normal-use instantiation (usually with 2 parameters: the container and the id of the container).
51 AttributeEntry attributeEntry (InterfaceEntry container, IDLID id); argument
54 ConstEntry constEntry (SymtabEntry container, IDLID id); argument
57 NativeEntry nativeEntry (SymtabEntry container, IDLID id); argument
60 EnumEntry enumEntry (SymtabEntry container, IDLID id); argument
63 ExceptionEntry exceptionEntry (SymtabEntry container, IDLID id); argument
66 ForwardEntry forwardEntry (ModuleEntry container, IDLID id); argument
69 ForwardValueEntry forwardValueEntry (ModuleEntry container, IDLID id); argument
75 InterfaceEntry interfaceEntry (ModuleEntry container, IDLID id); argument
78 ValueEntry valueEntry (ModuleEntry container, IDLID id); argument
81 valueBoxEntry(ModuleEntry container, IDLID id) argument
84 methodEntry(InterfaceEntry container, IDLID id) argument
87 moduleEntry(ModuleEntry container, IDLID id) argument
90 parameterEntry(MethodEntry container, IDLID id) argument
105 sequenceEntry(SymtabEntry container, IDLID id) argument
110 structEntry(SymtabEntry container, IDLID id) argument
113 typedefEntry(SymtabEntry container, IDLID id) argument
116 unionEntry(SymtabEntry container, IDLID id) argument
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/bugspot/tree/
H A DObjectTreeNodeAdapter.java42 public ObjectTreeNodeAdapter(Address addr, FieldIdentifier id) { argument
43 this(addr, id, false);
48 public ObjectTreeNodeAdapter(Address addr, FieldIdentifier id, boolean treeTableMode) { argument
49 super(id, treeTableMode);
78 FieldIdentifier id = ((FieldTreeNodeAdapter) child).getID();
79 Finder f = new Finder(id);
191 private FieldIdentifier id; field in class:ObjectTreeNodeAdapter.Finder
195 public Finder(FieldIdentifier id) { argument
196 this.id = id;
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/oops/
H A DField.java34 Field(FieldIdentifier id, long offset, boolean isVMField) { argument
36 this.id = id;
50 id = new NamedFieldIdentifier(name.asString());
60 private FieldIdentifier id; field in class:Field
74 public FieldIdentifier getID() { return id; }
80 public boolean isNamedField() { return (id instanceof NamedFieldIdentifier); }
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/ui/tree/
H A DCTypeTreeNodeAdapter.java86 public CTypeTreeNodeAdapter(Address a, Type t, FieldIdentifier id) { argument
87 this(a, t, id, false);
90 public CTypeTreeNodeAdapter(Address a, Type t, FieldIdentifier id, boolean treeTableMode) { argument
91 super(id, treeTableMode);
215 CTypeFieldIdentifier id = (CTypeFieldIdentifier)((FieldTreeNodeAdapter) child).getID();
218 if (id == f[i]) {
H A DOopTreeNodeAdapter.java44 public OopTreeNodeAdapter(Oop oop, FieldIdentifier id) { argument
45 this(oop, id, false);
50 public OopTreeNodeAdapter(Oop oop, FieldIdentifier id, boolean treeTableMode) { argument
51 super(id, treeTableMode);
95 FieldIdentifier id = ((FieldTreeNodeAdapter) child).getID();
96 Finder f = new Finder(id);
237 private FieldIdentifier id; field in class:OopTreeNodeAdapter.Finder
241 public Finder(FieldIdentifier id) { argument
242 this.id = id;
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/
H A DDelegatingDefaultFocusManager.java102 setDefaultFocusTraversalKeys(int id, argument
105 delegate.setDefaultFocusTraversalKeys(id, keystrokes);
107 public Set<AWTKeyStroke> getDefaultFocusTraversalKeys(int id) { argument
108 return delegate.getDefaultFocusTraversalKeys(id);
/openjdk7/jdk/src/share/classes/javax/xml/crypto/dsig/keyinfo/
H A DKeyInfoFactory.java312 * information types and optional id. The
313 * <code>id</code> parameter represents the value of an XML
320 * @param id the value of an XML <code>ID</code> (may be <code>null</code>)
327 public abstract KeyInfo newKeyInfo(List content, String id); argument
358 * @throws IllegalArgumentException if the key id is not in the correct
/openjdk7/jdk/src/share/classes/org/jcp/xml/dsig/internal/dom/
H A DDOMKeyInfoFactory.java54 public KeyInfo newKeyInfo(List content, String id) { argument
55 return new DOMKeyInfo(content, id);
H A DDOMSignedInfo.java78 private String id; field in class:DOMSignedInfo
125 * @param id an optional identifer that will allow this
135 List references, String id) {
137 this.id = id;
151 id = DOMUtils.getAttributeValue(siElem, "Id");
200 return id;
278 DOMUtils.setAttributeID(siElem, "Id", id);
294 boolean idEqual = (id == null ? osi.getId() == null :
295 id
134 DOMSignedInfo(CanonicalizationMethod cm, SignatureMethod sm, List references, String id) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/awt/
H A DRepaintArea.java91 * @param id possible values PaintEvent.UPDATE or PaintEvent.PAINT
94 public synchronized void add(Rectangle r, int id) { argument
100 if (id == PaintEvent.PAINT) {
/openjdk7/jdk/src/share/classes/java/lang/management/
H A DThreadMXBean.java171 * <tt>id</tt> with no stack trace.
174 * {@link #getThreadInfo(long, int) getThreadInfo(id, 0);}
194 * @param id the thread ID of the thread. Must be positive.
201 * @throws IllegalArgumentException if <tt>id &lt= 0</tt>.
206 public ThreadInfo getThreadInfo(long id); argument
247 * Returns a thread info for a thread of the specified <tt>id</tt>,
275 * @param id the thread ID of the thread. Must be positive.
285 * @throws IllegalArgumentException if <tt>id &lt= 0</tt>.
292 public ThreadInfo getThreadInfo(long id, int maxDepth); argument
463 * @param id th
479 getThreadCpuTime(long id) argument
514 getThreadUserTime(long id) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/management/timer/
H A DTimerMBean.java217 * @param id The timer notification identifier.
222 public void removeNotification(Integer id) throws InstanceNotFoundException; argument
273 * @param id The timer notification identifier.
278 public String getNotificationType(Integer id); argument
283 * @param id The timer notification identifier.
288 public String getNotificationMessage(Integer id); argument
293 * @param id The timer notification identifier.
299 //public Serializable getNotificationUserData(Integer id);
301 public Object getNotificationUserData(Integer id); argument
305 * @param id Th
310 getDate(Integer id) argument
320 getPeriod(Integer id) argument
330 getNbOccurences(Integer id) argument
341 getFixedRate(Integer id) argument
[all...]
/openjdk7/hotspot/src/share/vm/code/
H A DdebugInfo.cpp45 int id = read_int(); local
49 assert(((ObjectValue*) _obj_pool->at(i))->id() != id, "should not be read twice");
52 ObjectValue* result = new ObjectValue(id);
60 int id = read_int(); local
64 if (ov->id() == id) {
/openjdk7/hotspot/src/share/vm/gc_implementation/shared/
H A DconcurrentGCThread.cpp123 void SuspendibleThreadSet::yield(const char* id) { argument
289 void ConcurrentGCThread::stsYield(const char* id) { argument
292 _sts.yield(id);
H A DgcTraceSend.cpp45 event.set_gcId(_shared_gc_info.id());
59 e.set_gcId(_shared_gc_info.id());
69 e.set_gcId(_shared_gc_info.id());
80 e.set_gcId(_shared_gc_info.id());
91 e.set_gcId(_shared_gc_info.id());
110 e.set_gcId(_shared_gc_info.id());
121 e.set_gcId(_shared_gc_info.id());
130 e.set_gcId(_shared_gc_info.id());
141 e.set_gcId(_shared_gc_info.id());
157 e.set_gcId(_shared_gc_info.id());
187 GCHeapSummaryEventSender(GCId id, GCWhen::Type when) argument
[all...]
/openjdk7/jdk/src/share/classes/com/sun/jmx/snmp/IPAcl/
H A DSimpleNode.java38 protected int id; field in class:SimpleNode
42 id = i;
50 public static Node jjtCreate(int id) { argument
51 return new SimpleNode(id);
54 public static Node jjtCreate(Parser p, int id) { argument
55 return new SimpleNode(p, id);
139 public String toString() { return ParserTreeConstants.jjtNodeName[id]; }
/openjdk7/jdk/src/share/classes/com/sun/jmx/snmp/agent/
H A DSnmpMibOid.java439 SnmpMibNode getChild(long id) throws SnmpStatusException { argument
443 final int pos= getInsertAt(id);
447 if (varList[pos] != (int) id)
/openjdk7/jdk/src/share/classes/com/sun/jndi/ldap/pool/
H A DConnections.java41 * same pool id.
77 private Reference ref; // maintains reference to id to prevent premature GC
80 * @param id the identity (connection request) of the connections in the list
91 Connections(Object id, int initSize, int prefSize, int maxSize, argument
104 // Maintain soft ref to id so that this Connections' entry in
106 ref = new SoftReference(id);
/openjdk7/jdk/src/share/classes/com/sun/media/sound/
H A DModelDestination.java98 public ModelDestination(ModelIdentifier id) { argument
99 destination = id;
/openjdk7/jdk/src/share/classes/com/sun/org/apache/xml/internal/security/algorithms/
H A DJCEMapper.java50 * @param id
53 public static void register(String id, Algorithm algorithm) { argument
54 algorithmsMap.put(id, algorithm);
/openjdk7/jdk/src/share/classes/com/sun/org/apache/xml/internal/security/encryption/
H A DEncryptedType.java55 * assigning an id to the element within the document context.
57 * @return the id for the <code>EncryptedType</code>.
62 * Sets the id.
64 * @param id.
66 void setId(String id); argument

Completed in 94 milliseconds

<<11121314151617181920>>