Searched defs:id (Results 451 - 475 of 770) sorted by relevance

<<11121314151617181920>>

/openjdk7/jdk/src/share/classes/com/sun/tools/example/debug/tty/
H A DThreadInfo.java174 static ThreadInfo getThreadInfo(long id) { argument
179 if (ti.thread.uniqueID() == id) {
/openjdk7/jdk/src/share/classes/com/sun/tools/hat/internal/model/
H A DJavaLazyReadObject.java101 protected static Number makeId(long id) { argument
102 if ((id & ~Snapshot.SMALL_ID_MASK) == 0) {
103 return new Integer((int)id);
105 return new Long(id);
111 long id = num.longValue();
113 id &= Snapshot.SMALL_ID_MASK;
115 return id;
H A DRoot.java50 private long id; // ID of the JavaThing we refer to field in class:Root
73 public Root(long id, long refererId, int type, String description) { argument
74 this(id, refererId, type, description, null);
78 public Root(long id, long refererId, int type, String description, argument
80 this.id = id;
88 return id;
92 return Misc.toHex(id);
/openjdk7/jdk/src/share/classes/com/sun/tools/jdi/
H A DStackFrameImpl.java47 private final long id; field in class:StackFrameImpl
53 long id, Location location) {
56 this.id = id;
105 return (id == other.id) &&
115 return (thread().hashCode() << 4) + ((int)id);
127 /* protect against defunct frame id */
131 enqueueCommand(vm, thread, id);
224 /* protect against defunct frame id */
52 StackFrameImpl(VirtualMachine vm, ThreadReferenceImpl thread, long id, Location location) argument
[all...]
H A DVMState.java95 synchronized void notifyCommandComplete(int id) { argument
96 lastCompletedCommandId = id;
113 lastResumeCommandId = stream.id();
151 switch (action.id()) {
/openjdk7/jdk/src/share/classes/java/awt/
H A DEventDispatchThread.java145 void pumpEvents(int id, Conditional cond) { argument
146 pumpEventsForHierarchy(id, cond, null);
149 void pumpEventsForHierarchy(int id, Conditional cond, Component modalComponent) { argument
150 pumpEventsForFilter(id, cond, new HierarchyEventFilter(modalComponent));
157 void pumpEventsForFilter(int id, Conditional cond, EventFilter filter) { argument
161 pumpOneEventForFilters(id);
197 void pumpOneEventForFilters(int id) { argument
208 if (delegate != null && id == ANY_EVENT) {
211 event = (id == ANY_EVENT) ? eq.getNextEvent() : eq.getNextEvent(id);
[all...]
/openjdk7/hotspot/src/cpu/zero/vm/
H A Dframe_zero.inline.hpp128 // Return a unique id for this frame. The id must have a value where
131 inline intptr_t* frame::id() const { function in class:frame
147 inline bool frame::is_older(intptr_t* id) const {
/openjdk7/hotspot/src/os/bsd/vm/
H A DosThread_bsd.hpp54 // _pthread_id is the pthread id, which is used by library calls
59 // comment in thread_info.h, this is a "system-wide unique 64-bit thread id".
91 void set_unique_thread_id(uint64_t id) { argument
92 _unique_thread_id = id;
/openjdk7/hotspot/src/os/solaris/vm/
H A DosThread_solaris.hpp65 void set_lwp_id(uint id) { _lwp_id = id; } argument
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/Data/src/com/sun/hotspot/igv/data/
H A DInputBlock.java84 public void addNode(int id) { argument
85 InputNode n = graph.getNode(id);
88 addNode(graph.getNode(id));
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/HierarchicalLayout/src/com/sun/hotspot/igv/hierarchicallayout/
H A DClusterInputSlotNode.java54 private String id; field in class:ClusterInputSlotNode
58 return id;
61 public ClusterInputSlotNode(ClusterNode n, String id) { argument
63 this.id = id;
H A DClusterOutputSlotNode.java46 private String id; field in class:ClusterOutputSlotNode
58 return id;
61 public ClusterOutputSlotNode(ClusterNode n, String id) { argument
63 this.id = id;
/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_Runtime1.hpp123 static void generate_blob_for(BufferBlob* blob, StubID id);
124 static OopMapSet* generate_code_for(StubID id, StubAssembler* sasm);
126 static OopMapSet* generate_handle_exception(StubID id, StubAssembler* sasm);
141 static void unimplemented_entry (JavaThread* thread, StubID id);
169 static CodeBlob* blob_for (StubID id);
170 static address entry_for(StubID id) { return blob_for(id)->code_begin(); } argument
171 static const char* name_for (StubID id);
/openjdk7/jdk/src/macosx/classes/sun/lwawt/
H A DPlatformEventNotifier.java51 void notifyMouseEvent(int id, long when, int button, argument
63 void notifyKeyEvent(int id, long when, int modifiers, argument
/openjdk7/jdk/src/share/back/
H A DObjectReferenceImpl.c245 jlong id; local
248 id = inStream_readObjectID(in);
253 error = commonRef_pin(id);
265 jlong id; local
267 id = inStream_readObjectID(in);
272 error = commonRef_unpin(id);
284 jlong id; local
288 id = inStream_readObjectID(in);
293 if (id == NULL_OBJECT_ID) {
298 ref = commonRef_idToRef(env, id);
[all...]
/openjdk7/jdk/src/share/classes/com/sun/imageio/plugins/jpeg/
H A DDQTMarkerSegment.java237 Qtable(JPEGQTable table, int id) { argument
239 tableID = id;
293 System.out.println("Table id: " + Integer.toString(tableID));
H A DSOFMarkerSegment.java213 ComponentSpec getComponentSpec(byte id, int factor, int qSelector) { argument
214 return new ComponentSpec(id, factor, qSelector);
226 ComponentSpec(byte id, int factor, int qSelector) { argument
227 componentId = id;
/openjdk7/hotspot/src/share/vm/runtime/
H A DjfieldIDWorkaround.hpp83 static bool is_checked_jfieldID(jfieldID id) { argument
84 uintptr_t as_uint = (uintptr_t) id;
87 static intptr_t raw_instance_offset(jfieldID id) { argument
88 uintptr_t result = (uintptr_t) id >> address_shift;
89 if (VerifyJNIFields && is_checked_jfieldID(id)) {
95 static bool klass_hash_ok(klassOop k, jfieldID id);
96 static void verify_instance_jfieldID(klassOop k, jfieldID id);
99 static bool is_valid_jfieldID(klassOop k, jfieldID id);
101 static bool is_instance_jfieldID(klassOop k, jfieldID id) { argument
102 uintptr_t as_uint = (uintptr_t) id;
105 is_static_jfieldID(jfieldID id) argument
127 from_instance_jfieldID(klassOop k, jfieldID id) argument
138 to_static_jfieldID(JNIid* id) argument
145 from_static_jfieldID(jfieldID id) argument
155 JNIid *id = k->jni_id_for(offset); local
[all...]
/openjdk7/hotspot/src/share/vm/trace/
H A DtraceEvent.hpp109 TraceEventId id() const { function in class:TraceEvent
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/reader/
H A DRawTypeSet.java176 public ID id() { method in class:RawTypeSet
178 ID id = t.id();
179 if(id!=ID.NONE) return id;
219 protected abstract ID id(); method in class:RawTypeSet.Ref
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/reader/relaxng/
H A DRawTypeSetBuilder.java117 protected ID id() { method in class:RawTypeSetBuilder.CClassInfoRef
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/reader/xmlschema/
H A DRawTypeSetBuilder.java191 protected ID id() { method in class:RawTypeSetBuilder.WildcardRef
228 protected ID id() { method in class:RawTypeSetBuilder.CClassRef
273 if((parent.refs.size()>1 || !parent.mul.isAtMostOnce()) && p.id()!=ID.NONE)
290 protected ID id() { method in class:RawTypeSetBuilder.CElementInfoRef
291 return target.getProperty().id();
370 protected ID id() { method in class:RawTypeSetBuilder.XmlTypeRef
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/policy/jaxws/
H A DSafePolicyReader.java106 * if JAX-WS did not pass on any system id.
107 * @param id The short ID of the policy. Used for error reporting.
109 * same id.
111 public void setUri(final String uri, final String id) throws PolicyException { argument
113 throw LOGGER.logSevereException(new PolicyException(PolicyMessages.WSP_1020_DUPLICATE_ID(id)));
142 * @param baseUrl The system id of the document read by the reader.
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/policy/sourcemodel/
H A DXmlPolicyModelUnmarshaller.java116 * @param id
120 protected PolicySourceModel createSourceModel(NamespaceVersion nsVersion, String id, String name) { argument
121 return PolicySourceModel.createPolicySourceModel(nsVersion, id, name);
/openjdk7/jdk/src/windows/classes/sun/tools/attach/
H A DWindowsVirtualMachine.java45 WindowsVirtualMachine(AttachProvider provider, String id) argument
48 super(provider, id);
52 pid = Integer.parseInt(id);

Completed in 121 milliseconds

<<11121314151617181920>>