Searched refs:uniqueID (Results 1 - 25 of 31) sorted by relevance

12

/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/
H A DRMIHelper.java61 public static void rebind(String uniqueID, Remote object) throws DebuggerException { argument
62 String name = getName(uniqueID);
82 public static void unbind(String uniqueID) throws DebuggerException { argument
83 String name = getName(uniqueID);
97 String uniqueID = null;
100 uniqueID = debugServerID.substring(0, index);
107 if (uniqueID != null) {
109 nameBuf.append(uniqueID);
119 private static String getName(String uniqueID) { argument
121 if (uniqueID !
[all...]
H A DHotSpotAgent.java212 public synchronized void startServer(int processID, String uniqueID) { argument
219 serverID = uniqueID;
233 core file. Uses supplied uniqueID to uniquely identify a specific
237 String uniqueID) {
248 serverID = uniqueID;
235 startServer(String javaExecutableName, String coreFileName, String uniqueID) argument
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/jdi/
H A DClassObjectReferenceImpl.java51 uniqueID() + ")";
H A DThreadGroupReferenceImpl.java42 return "ThreadGroupReference " + uniqueID();
93 "(name='" + name() + "', " + "id=" + uniqueID() + ")";
H A DClassLoaderReferenceImpl.java51 return "ClassLoaderReference " + uniqueID();
H A DArrayReferenceImpl.java169 "[" + length() + "] (id=" + uniqueID() + ")";
H A DObjectReferenceImpl.java157 public long uniqueID() { method in class:ObjectReferenceImpl
365 return "instance of " + referenceType().name() + "(id=" + uniqueID() + ")";
H A DThreadReferenceImpl.java80 return "ThreadReference " + uniqueID();
398 "(name='" + name() + "', " + "id=" + uniqueID() + ")";
/openjdk7/jdk/src/share/classes/com/sun/tools/jdi/
H A DClassObjectReferenceImpl.java60 "(reflected class=" + reflectedType().name() + ", " + "id=" + uniqueID() + ")";
H A DThreadGroupReferenceImpl.java54 return "ThreadGroupReference " + uniqueID();
143 "(name='" + name() + "', " + "id=" + uniqueID() + ")";
H A DClassLoaderReferenceImpl.java49 return "ClassLoaderReference " + uniqueID();
H A DObjectReferenceImpl.java99 return "ObjectReference " + uniqueID();
454 public long uniqueID() { method in class:ObjectReferenceImpl
491 vm.printTrace("ObjectReference " + uniqueID() +
597 return "instance of " + referenceType().name() + "(id=" + uniqueID() + ")";
H A DThreadReferenceImpl.java126 return "ThreadReference " + uniqueID();
481 " (id = " + snapshot.contendedMonitor.uniqueID() + ")");
589 "(name='" + name() + "', " + "id=" + uniqueID() + ")";
H A DArrayReferenceImpl.java207 "[" + length() + "] (id=" + uniqueID() + ")";
/openjdk7/jdk/src/share/classes/sun/java2d/loops/
H A DCompositeType.java235 private int uniqueID; field in class:CompositeType
242 this.uniqueID = makeUniqueID(desc);
259 return uniqueID;
287 return (((CompositeType) o).uniqueID == this.uniqueID);
H A DSurfaceType.java384 private int uniqueID; field in class:SurfaceType
393 this.uniqueID = makeUniqueID(desc);
400 this.uniqueID = makeUniqueID(desc);
418 return uniqueID;
451 return (((SurfaceType) o).uniqueID == this.uniqueID);
H A DGraphicsPrimitiveMgr.java73 public int uniqueID; field in class:GraphicsPrimitiveMgr.PrimitiveSpec
88 int id2 = ((PrimitiveSpec) o2).uniqueID;
201 spec.uniqueID =
259 writeLog(" " + spec.uniqueID);
H A DGraphicsPrimitive.java110 private int uniqueID; field in class:GraphicsPrimitive
153 this.uniqueID = primTypeID << 24;
155 this.uniqueID = GraphicsPrimitive.makeUniqueID(primTypeID,
180 this.uniqueID = primTypeID << 24;
182 this.uniqueID = GraphicsPrimitive.makeUniqueID(primTypeID,
209 return uniqueID;
227 return uniqueID >>> 24;
/openjdk7/jdk/src/share/classes/com/sun/jdi/
H A DObjectReference.java335 long uniqueID(); method in interface:ObjectReference
/openjdk7/jdk/src/share/classes/com/sun/tools/example/debug/tty/
H A DThreadInfo.java179 if (ti.thread.uniqueID() == id) {
189 return getThreadInfo(tr.uniqueID());
H A DEnv.java208 long id = ref.uniqueID();
/openjdk7/jdk/test/java/util/concurrent/locks/Lock/
H A DTimedAcquireLeak.java149 final String uniqueID =
155 childClassName, uniqueID
161 "(?m)^ *([0-9]+) +\\Q"+childClassName+"\\E *"+uniqueID+"$", 1);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/bugspot/
H A DBugSpotAgent.java384 examine this process. uniqueID is used to uniquely identify the
386 public synchronized void startServer(int processID, String uniqueID) argument
394 serverID = uniqueID;
408 core file. uniqueID is used to uniquely identify the
411 String uniqueID)
423 serverID = uniqueID;
410 startServer(String executableName, String coreFileName, String uniqueID) argument
/openjdk7/jdk/src/share/classes/com/sun/tools/example/debug/bdi/
H A DUtils.java80 long id = ref.uniqueID(); //### TODO use real id
/openjdk7/jdk/test/com/sun/jdi/
H A DGetSetLocalTest.java483 if (set.uniqueID() == get.uniqueID()) {

Completed in 94 milliseconds

12