OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:RefTypeId
(Results
1 - 9
of
9
) sorted by null
/art/runtime/jdwp/
jdwp_event.h
49
RefTypeId
refTypeId
;
67
RefTypeId
refTypeId
;
71
RefTypeId
refTypeId
;
jdwp_handler.cc
53
std::string DescribeRefTypeId(const
RefTypeId
& ref_type_id) {
90
RefTypeId
class_id, MethodId method_id, bool is_constructor)
157
std::vector<
RefTypeId
> ids;
225
expandBufAdd4BE(pReply, sizeof(
RefTypeId
));
357
std::vector<JDWP::
RefTypeId
> classes;
402
std::vector<
RefTypeId
> class_ids;
422
RefTypeId
refTypeId
= request->ReadRefTypeId();
423
return Dbg::GetModifiers(
refTypeId
, pReply);
431
RefTypeId
refTypeId = request->ReadRefTypeId()
[
all
...]
jdwp.h
55
* ObjectId and
RefTypeId
must be the same size.
62
typedef uint64_t
RefTypeId
; /* like ObjectID, but unique for Class objects */
70
static inline void SetRefTypeId(uint8_t* buf,
RefTypeId
val) { return Set8BE(buf, val); }
75
static inline void expandBufAddRefTypeId(ExpandBuf* pReply,
RefTypeId
id) { expandBufAdd8BE(pReply, id); }
88
RefTypeId
class_id;
424
std::string DescribeRefTypeId(const
RefTypeId
& ref_type_id) REQUIRES_SHARED(Locks::mutator_lock_);
454
RefTypeId
ReadRefTypeId() REQUIRES_SHARED(Locks::mutator_lock_);
jdwp_request.cc
124
RefTypeId
Request::ReadRefTypeId() {
125
RefTypeId
id = Read8BE();
object_registry.h
71
JDWP::
RefTypeId
AddRefType(ObjPtr<mirror::Class> c)
80
JDWP::
RefTypeId
AddRefType(Handle<mirror::Class> c_h)
object_registry.cc
45
JDWP::
RefTypeId
ObjectRegistry::AddRefType(ObjPtr<mirror::Class> c) {
49
JDWP::
RefTypeId
ObjectRegistry::AddRefType(Handle<mirror::Class> c_h) {
jdwp_event.cc
511
if (!Dbg::MatchType(basket.locationClass.Get(), pMod->classOnly.
refTypeId
)) {
531
if (pMod->exceptionOnly.
refTypeId
!= 0 &&
532
!Dbg::MatchType(basket.exceptionClass.Get(), pMod->exceptionOnly.
refTypeId
)) {
541
if (!Dbg::MatchField(pMod->fieldOnly.
refTypeId
, pMod->fieldOnly.fieldId, basket.field)) {
[
all
...]
/art/runtime/
debugger.h
286
static std::string GetClassName(JDWP::
RefTypeId
id)
290
static JDWP::JdwpError GetClassObject(JDWP::
RefTypeId
id, JDWP::ObjectId* class_object_id)
292
static JDWP::JdwpError GetSuperclass(JDWP::
RefTypeId
id, JDWP::
RefTypeId
* superclass_id)
294
static JDWP::JdwpError GetClassLoader(JDWP::
RefTypeId
id, JDWP::ExpandBuf* pReply)
296
static JDWP::JdwpError GetModifiers(JDWP::
RefTypeId
id, JDWP::ExpandBuf* pReply)
298
static JDWP::JdwpError GetReflectedType(JDWP::
RefTypeId
class_id, JDWP::ExpandBuf* pReply)
300
static void GetClassList(std::vector<JDWP::
RefTypeId
>* classes)
302
static JDWP::JdwpError GetClassInfo(JDWP::
RefTypeId
class_id, JDWP::JdwpTypeTag* pTypeTag,
305
static void FindLoadedClassBySignature(const char* descriptor, std::vector<JDWP::
RefTypeId
>* ids
[
all
...]
debugger.cc
423
static mirror::Array* DecodeNonNullArray(JDWP::
RefTypeId
id, JDWP::JdwpError* error)
438
static mirror::Class* DecodeClass(JDWP::
RefTypeId
id, JDWP::JdwpError* error)
773
std::string Dbg::GetClassName(JDWP::
RefTypeId
class_id) {
797
JDWP::JdwpError Dbg::GetClassObject(JDWP::
RefTypeId
id, JDWP::ObjectId* class_object_id) {
808
JDWP::JdwpError Dbg::GetSuperclass(JDWP::
RefTypeId
id, JDWP::
RefTypeId
* superclass_id) {
824
JDWP::JdwpError Dbg::GetClassLoader(JDWP::
RefTypeId
id, JDWP::ExpandBuf* pReply) {
834
JDWP::JdwpError Dbg::GetModifiers(JDWP::
RefTypeId
id, JDWP::ExpandBuf* pReply) {
[
all
...]
Completed in 521 milliseconds