OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:refTypeId
(Results
1 - 6
of
6
) sorted by null
/dalvik/vm/jdwp/
JdwpEvent.h
44
RefTypeId
refTypeId
;
62
RefTypeId
refTypeId
;
66
RefTypeId
refTypeId
;
JdwpHandler.cpp
104
ObjectId threadId, ObjectId objectId,
RefTypeId
classId, MethodId methodId,
223
RefTypeId
refTypeId
;
224
if (!dvmDbgFindLoadedClassBySignature(classDescriptor, &
refTypeId
)) {
240
dvmDbgGetClassInfo(
refTypeId
, &typeTag, &status, NULL);
243
expandBufAddRefTypeId(pReply,
refTypeId
);
310
expandBufAdd4BE(pReply, sizeof(
RefTypeId
));
483
RefTypeId
* classRefBuf = NULL;
516
RefTypeId
refTypeId
= dvmReadRefTypeId(&buf)
[
all
...]
JdwpEvent.cpp
107
RefTypeId
classId; /* ClassOnly */
108
RefTypeId
excepClassId; /* ExceptionOnly */
480
if (!dvmDbgMatchType(basket->classId, pMod->classOnly.
refTypeId
))
498
if (pMod->exceptionOnly.
refTypeId
!= 0 &&
500
pMod->exceptionOnly.
refTypeId
))
507
if (!dvmDbgMatchType(basket->classId, pMod->fieldOnly.
refTypeId
) ||
1023
ObjectId exceptionId,
RefTypeId
exceptionClassId,
[
all
...]
Jdwp.h
38
* ObjectId and
RefTypeId
must be the same size.
43
typedef u8
RefTypeId
; /* like ObjectID, but unique for Class objects */
53
INLINE
RefTypeId
dvmReadRefTypeId(const u1** pBuf) { return read8BE(pBuf); }
58
INLINE void dvmSetRefTypeId(u1* buf,
RefTypeId
val) { return set8BE(buf, val); }
69
INLINE void expandBufAddRefTypeId(ExpandBuf* pReply,
RefTypeId
id) {
82
RefTypeId
classId; /* method->clazz */
211
ObjectId excepId,
RefTypeId
excepClassId, const JdwpLocation* pCatchLoc,
222
bool dvmJdwpPostClassPrepare(JdwpState* state, int tag,
RefTypeId
refTypeId
,
/dalvik/vm/
Debugger.h
162
const char* dvmDbgGetClassDescriptor(
RefTypeId
id);
163
ObjectId dvmDbgGetClassObject(
RefTypeId
id);
164
RefTypeId
dvmDbgGetSuperclass(
RefTypeId
id);
165
ObjectId dvmDbgGetClassLoader(
RefTypeId
id);
166
u4 dvmDbgGetAccessFlags(
RefTypeId
id);
167
bool dvmDbgIsInterface(
RefTypeId
id);
168
void dvmDbgGetClassList(u4* pNumClasses,
RefTypeId
** pClassRefBuf);
170
RefTypeId
** pClassRefBuf);
171
void dvmDbgGetClassInfo(
RefTypeId
classId, u1* pTypeTag, u4* pStatus
[
all
...]
Debugger.cpp
203
* This is used for both ObjectId and
RefTypeId
. In theory we don't have
248
* Note this actually takes both ObjectId and
RefTypeId
.
266
* Convert to/from a
RefTypeId
.
270
static
RefTypeId
classObjectToRefTypeId(ClassObject* clazz)
272
return (
RefTypeId
) registerObject((Object*) clazz, kRefTypeId, true);
275
static
RefTypeId
classObjectToRefTypeIdNoReg(ClassObject* clazz)
277
return (
RefTypeId
) registerObject((Object*) clazz, kRefTypeId, false);
280
static ClassObject* refTypeIdToClassObject(
RefTypeId
id)
327
static Method* methodIdToMethod(
RefTypeId
refTypeId
, MethodId id
[
all
...]
Completed in 71 milliseconds