HomeSort by relevance Sort by last modified time
    Searched refs:objectID (Results 1 - 25 of 232) sorted by null

1 2 3 4 5 6 7 8 910

  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/jdwp/
TaggedObject.java 31 * This class represents tagged-objectID value in JDWP packet.
35 public long objectID;
42 objectID = 0;
48 public TaggedObject(byte tag, long objectID) {
50 this.objectID = objectID;
  /external/clang/test/CodeGenCXX/
debug-info-dup-fwd-decl.cpp 11 return reserved->objectID;
15 unsigned objectID;
  /frameworks/wilhelm/src/ut/
OpenSLESUT.h 25 extern const char *slesutObjectIDToString(SLuint32 objectID);
OpenSLESUT.c 147 const char *slesutObjectIDToString(SLuint32 objectID)
161 return (0x1001 <= objectID) && (objectID <= 0x100A) ? objectIDstrings[objectID - 0x1001] : NULL;
  /frameworks/native/libs/binder/include/binder/
BpBinder.h 52 virtual void attachObject( const void* objectID,
56 virtual void* findObject(const void* objectID) const;
57 virtual void detachObject(const void* objectID);
70 void attach( const void* objectID,
74 void* find(const void* objectID) const;
75 void detach(const void* objectID);
Binder.h 51 virtual void attachObject( const void* objectID,
55 virtual void* findObject(const void* objectID) const;
56 virtual void detachObject(const void* objectID);
IBinder.h 154 virtual void attachObject( const void* objectID,
158 virtual void* findObject(const void* objectID) const = 0;
159 virtual void detachObject(const void* objectID) = 0;
  /system/libhwbinder/include/hwbinder/
BpHwBinder.h 49 virtual void attachObject( const void* objectID,
53 virtual void* findObject(const void* objectID) const;
54 virtual void detachObject(const void* objectID);
67 void attach( const void* objectID,
71 void* find(const void* objectID) const;
72 void detach(const void* objectID);
Binder.h 48 virtual void attachObject( const void* objectID,
52 virtual void* findObject(const void* objectID) const;
53 virtual void detachObject(const void* objectID);
IBinder.h 108 virtual void attachObject( const void* objectID,
112 virtual void* findObject(const void* objectID) const = 0;
113 virtual void detachObject(const void* objectID) = 0;
  /system/libhwbinder/
BpHwBinder.cpp 45 const void* objectID, void* object, void* cleanupCookie,
53 if (mObjects.indexOfKey(objectID) >= 0) {
55 objectID, this, object);
59 mObjects.add(objectID, e);
62 void* BpHwBinder::ObjectManager::find(const void* objectID) const
64 const ssize_t i = mObjects.indexOfKey(objectID);
69 void BpHwBinder::ObjectManager::detach(const void* objectID)
71 mObjects.removeItem(objectID);
229 const void* objectID, void* object, void* cleanupCookie,
234 mObjects.attach(objectID, object, cleanupCookie, func)
    [all...]
Binder.cpp 118 const void* objectID, void* object, void* cleanupCookie,
136 e->mObjects.attach(objectID, object, cleanupCookie, func);
139 void* BHwBinder::findObject(const void* objectID) const
145 return e->mObjects.find(objectID);
148 void BHwBinder::detachObject(const void* objectID)
154 e->mObjects.detach(objectID);
  /external/clang/test/Index/
comment-cplus-decls.cpp 27 return reserved->objectID;
35 unsigned objectID;
  /frameworks/wilhelm/tests/sandbox/
object.c 40 SLuint32 objectID;
47 for (objectID = FIRST_VALID - 1; objectID <= LAST_VALID + 1; ++objectID) {
48 printf("object ID %x", objectID);
49 const char *string = slesutObjectIDToString(objectID);
53 result = (*engineEngine)->QueryNumSupportedInterfaces(engineEngine, objectID, NULL);
56 result = (*engineEngine)->QueryNumSupportedInterfaces(engineEngine, objectID,
61 result = (*engineEngine)->QuerySupportedInterfaces(engineEngine, objectID, 0,
70 result = (*engineEngine)->QuerySupportedInterfaces(engineEngine, objectID, i, NULL)
    [all...]
  /frameworks/native/libs/binder/
BpBinder.cpp 45 const void* objectID, void* object, void* cleanupCookie,
53 if (mObjects.indexOfKey(objectID) >= 0) {
55 objectID, this, object);
59 mObjects.add(objectID, e);
62 void* BpBinder::ObjectManager::find(const void* objectID) const
64 const ssize_t i = mObjects.indexOfKey(objectID);
69 void BpBinder::ObjectManager::detach(const void* objectID)
71 mObjects.removeItem(objectID);
287 const void* objectID, void* object, void* cleanupCookie,
292 mObjects.attach(objectID, object, cleanupCookie, func)
    [all...]
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/InterfaceType/
InvokeMethodTest.java 129 assertTrue("Invalid exception object ID:<" + exception.objectID + ">",
130 exception.objectID != 0);
135 + exception.tag + " exception.objectID=" + exception.objectID);
144 assertEquals("Invalid exception object ID:<" + exception.objectID + ">",
145 exception.objectID, 0);
150 + exception.tag + " exception.objectID=" + exception.objectID);
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ObjectReference/
InvokeMethodTest.java 141 + newObject.tag + " newObject.objectID=" + newObject.objectID);
145 + exception.tag + " exception.objectID=" + exception.objectID);
148 assertTrue("newObject.objectID must be != 0", newObject.objectID != 0);
154 assertTrue("exception.objectID must be == 0", exception.objectID == 0);
205 packet.setNextValueAsObjectID(newObject.objectID);
222 + exception.tag + " exception.objectID=" + exception.objectID)
    [all...]
ReferringObjectsTest.java 52 * <BR>The test starts ReferringObjectsDebuggee class, requests referree objectID,
64 * <BR>The test starts ReferringObjectsDebuggee class, requests referree objectID,
76 * <BR>The test starts ReferringObjectsDebuggee class, requests referree objectID,
88 * <BR>The test starts ReferringObjectsDebuggee class, requests referree objectID,
114 // Compose Instances command to get referree objectID
128 // Get the tagged-objectID
130 long objectID = checkedReply.getNextValueAsObjectID();
137 ReferringObjectsCommand.setNextValueAsObjectID(objectID);
155 //Get the tagged-objectID
160 objectID = checkedReply.getNextValueAsObjectID()
    [all...]
InvokeMethodDefault002Test.java 155 assertTrue("Invalid exception object ID:<" + exception.objectID + ">",
156 exception.objectID != 0L);
161 + exception.tag + " exception.objectID=" + exception.objectID);
170 assertEquals("Invalid exception object ID:<" + exception.objectID + ">",
171 exception.objectID, 0);
176 + exception.tag + " exception.objectID=" + exception.objectID);
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ClassType/
NewInstanceAfterMultipleThreadSuspensionTest.java 62 assertTrue("Invalid exception object id", invokeNewObject.objectID != 0);
67 assertEquals("Invalid exception object id", 0, invokeException.objectID);
NewInstanceWithSuspensionTest.java 60 assertTrue("Invalid exception object id", invokeNewObject.objectID != 0);
65 assertEquals("Invalid exception object id", 0, invokeException.objectID);
NewInstance002Test.java 133 + newObject.tag + "; newObject.objectID=" + newObject.objectID);
136 + exception.tag + "; exception.objectID=" + exception.objectID);
139 assertTrue("newObject.objectID is 0", newObject.objectID != 0);
145 assertEquals("ClassType::NewInstance returned invalid exception.objectID,", 0, exception.objectID);
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ReferenceType/
InstancesTest.java 122 //Get the tagged-objectID
127 long objectID = checkedReply.getNextValueAsObjectID();
128 logWriter.println("=> ObjectID is: " + objectID);
130 objectID, new long[] { mockClassFieldID });
235 // Get the tagged-objectID
239 long objectID = checkedReply.getNextValueAsObjectID();
240 logWriter.println("=> ObjectID is: " + objectID);
285 // Get the tagged-objectID
    [all...]
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/StackFrame/
ThisObjectTest.java 135 logWriter.println("==> id=" + thisObject.objectID);
136 if (thisObject.objectID != 0) {
137 long classID = getObjectReferenceType(thisObject.objectID);
144 if (thisObject.objectID == 0) {
146 ("## FAILURE: StackFrame.ThisObject returned NULL ObjectID for known method: " + methodName);
148 fail("StackFrame.ThisObject returned NULL ObjectID for known method: " + methodName);
151 if ( knownMethodsThisObject != thisObject.objectID ) {
153 ("## FAILURE: Returned unexpected ObjectID for known method: " + methodName);
155 ("## Expected ObjectID: " + knownMethodsThisObject);
157 fail("Returned unexpected ObjectID for known method: " + methodName)
    [all...]
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/Events/
ExceptionUncaughtTest.java 57 // assert that exception ObjectID is not null
58 printTestLog("returnedException.objectID = " + returnedException.objectID);
59 assertTrue("Returned exception object is null.", returnedException.objectID != 0);
62 printTestLog("returnedException.tag = " + returnedException.objectID);
67 long typeID = getObjectReferenceType(returnedException.objectID);

Completed in 430 milliseconds

1 2 3 4 5 6 7 8 910