Searched refs:objectID (Results 1 - 25 of 38) sorted by relevance

12

/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/jdwp/
H A DTaggedObject.java31 * This class represents tagged-objectID value in JDWP packet.
35 public long objectID; field in class:TaggedObject
42 objectID = 0;
48 public TaggedObject(byte tag, long objectID) { argument
50 this.objectID = objectID;
/external/clang/test/CodeGenCXX/
H A Ddebug-info-dup-fwd-decl.cpp11 return reserved->objectID;
15 unsigned objectID; member in struct:Test::data
/external/clang/test/Index/
H A Dcomment-cplus-decls.cpp27 return reserved->objectID;
35 unsigned objectID; member in struct:Test::data
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ObjectReference/
H A DInvokeMethodTest.java140 + newObject.tag + " newObject.objectID=" + newObject.objectID);
144 + exception.tag + " exception.objectID=" + exception.objectID);
147 assertTrue("newObject.objectID must be != 0", newObject.objectID != 0);
153 assertTrue("exception.objectID must be == 0", exception.objectID == 0);
204 packet.setNextValueAsObjectID(newObject.objectID);
221 + exception.tag + " exception.objectID
[all...]
H A DReferringObjectsTest.java62 * <BR>The test starts ReferringObjectsDebuggee class, requests referree objectID,
74 * <BR>The test starts ReferringObjectsDebuggee class, requests referree objectID,
86 * <BR>The test starts ReferringObjectsDebuggee class, requests referree objectID,
98 * <BR>The test starts ReferringObjectsDebuggee class, requests referree objectID,
129 // Compose Instances command to get referree objectID
143 // Get the tagged-objectID
145 long objectID = checkedReply.getNextValueAsObjectID();
152 ReferringObjectsCommand.setNextValueAsObjectID(objectID);
170 //Get the tagged-objectID
175 objectID
[all...]
H A DDisableCollectionTest.java54 * objectID as value of static field of this class which (field) represents
55 * checked object. Then for this objectID test executes
152 * disable collection for an invalid objectID and checks INVALID_OBJECT is
179 private void disableCollection(long objectID, int expectedErrorCode) { argument
183 command.setNextValueAsObjectID(objectID);
H A DEnableCollectionTest.java54 * <BR>The test starts EnableCollectionDebuggee class, gets objectID
56 * Then for this objectID test executes ObjectReference::DisableCollection command
157 * enable collection for an invalid objectID and checks no error is
184 private void enableCollection(long objectID, int expectedErrorCode) { argument
188 command.setNextValueAsObjectID(objectID);
H A DInvokeMethod002Test.java160 assertTrue("Invalid exception object ID:<" + exception.objectID + ">", exception.objectID == 0);
165 + exception.tag + " exception.objectID=" + exception.objectID);
H A DInvokeMethod003Test.java169 assertTrue("Invalid exception object ID:<" + exception.objectID + ">", exception.objectID == 0);
174 + exception.tag + " exception.objectID=" + exception.objectID);
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ReferenceType/
H A DInstancesTest.java132 //Get the tagged-objectID
137 long objectID = checkedReply.getNextValueAsObjectID();
138 logWriter.println("=> ObjectID is: " + objectID);
140 objectID, new long[] { mockClassFieldID });
255 // Get the tagged-objectID
259 long objectID = checkedReply.getNextValueAsObjectID();
260 logWriter.println("=> ObjectID is: " + objectID);
315 // Get the tagged-objectID
319 long objectID = checkedReply.getNextValueAsObjectID();
320 logWriter.println("=> ObjectID is: " + objectID);
[all...]
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/StackFrame/
H A DThisObjectTest.java135 logWriter.println("==> id=" + thisObject.objectID);
136 if (thisObject.objectID != 0) {
137 long classID = getObjectReferenceType(thisObject.objectID);
144 if (thisObject.objectID == 0) {
151 if ( knownMethodsThisObject != thisObject.objectID ) {
160 knownMethodsThisObject = thisObject.objectID;
175 if (thisObject.objectID != 0) {
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ClassType/
H A DNewInstance002Test.java132 + newObject.tag + "; newObject.objectID=" + newObject.objectID);
135 + exception.tag + "; exception.objectID=" + exception.objectID);
138 assertTrue("newObject.objectID is 0", newObject.objectID != 0);
144 assertEquals("ClassType::NewInstance returned invalid exception.objectID,", 0, exception.objectID);
H A DNewInstanceTest.java178 + newObject.tag + "; newObject.objectID=" + newObject.objectID);
181 + exception.tag + "; exception.objectID=" + exception.objectID);
184 assertTrue("newObject.objectID is 0", newObject.objectID != 0);
190 assertEquals("ClassType::NewInstance returned invalid exception.objectID,", 0, exception.objectID);
198 packet.setNextValueAsObjectID(newObject.objectID);
229 + newObject.tag + "; newObject.objectID
[all...]
H A DInvokeMethod003Test.java132 assertTrue("Invalid exception object ID:<" + exception.objectID + ">", exception.objectID == 0);
137 + exception.tag + " exception.objectID=" + exception.objectID);
H A DInvokeMethodTest.java185 assertTrue("Invalid exception object ID:<" + exception.objectID + ">", exception.objectID == 0);
190 + exception.tag + " exception.objectID=" + exception.objectID);
213 assertTrue("Invalid exception object ID:<" + exception.objectID + ">", exception.objectID != 0);
218 + exception.tag + " exception.objectID=" + exception.objectID);
355 + exception.tag + " exception.objectID=" + exception.objectID);
[all...]
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/EventModifiers/
H A DInstanceOnlyModifierTest.java288 long objectID = getInstanceObjectId();
289 builder.setInstanceOnly(objectID);
296 checkThisObject(eventThread, objectID);
301 private void checkThisObject(EventThreadLocation eventThread, long objectID) { argument
328 objectID, thisObjectID);
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ArrayType/
H A DNewInstanceTest.java111 + newArray.tag + " newArray.objectID=" + newArray.objectID);
123 packet.setNextValueAsObjectID(newArray.objectID);
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ThreadReference/
H A DForceEarlyReturn006Test.java48 // Get the objectID of test thread
50 // Compose Instances command to get tested thread objectID
65 // Get the tagged-objectID
67 long objectID = checkedReply.getNextValueAsObjectID();
68 return objectID;
H A DOwnedMonitorsTest.java101 + "ID: " + tobj.objectID);
106 packet.setNextValueAsObjectID(tobj.objectID);
H A DCurrentContendedMonitorTest.java98 + "ID: " + tobj.objectID);
103 packet.setNextValueAsObjectID(tobj.objectID);
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/Events/
H A DExceptionTest.java86 logWriter.println(">> testExceptionEvent: returnedException.objectID = " + returnedException.objectID);
87 assertTrue("Returned exception object is null.", returnedException.objectID != 0);
90 logWriter.println(">> testExceptionEvent: returnedException.tag = " + returnedException.objectID);
94 long typeID = getObjectReferenceType(returnedException.objectID);
H A DExceptionWithLocationTest.java84 long thrownExceptionClassId = getObjectReferenceType(exception.objectID);
H A DFieldAccessTest.java84 long typeID = getObjectReferenceType(accessedField.objectID);
H A DFieldModificationTest.java84 long typeID = getObjectReferenceType(modifiedField.objectID);
H A DFieldWithLocationTest.java109 long typeID = getObjectReferenceType(accessedField.objectID);

Completed in 231 milliseconds

12