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.h
52
* ObjectId and
RefTypeId
must be the same size.
57
typedef uint64_t
RefTypeId
; /* like ObjectID, but unique for Class objects */
65
static inline void SetRefTypeId(uint8_t* buf,
RefTypeId
val) { return Set8BE(buf, val); }
70
static inline void expandBufAddRefTypeId(ExpandBuf* pReply,
RefTypeId
id) { expandBufAdd8BE(pReply, id); }
83
RefTypeId
class_id;
388
std::string DescribeRefTypeId(const
RefTypeId
& ref_type_id) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
418
RefTypeId
ReadRefTypeId() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
jdwp_handler.cc
48
std::string DescribeRefTypeId(const
RefTypeId
& ref_type_id) {
96
RefTypeId
class_id, MethodId method_id, bool is_constructor)
197
std::vector<
RefTypeId
> ids;
267
expandBufAdd4BE(pReply, sizeof(
RefTypeId
));
400
std::vector<JDWP::
RefTypeId
> classes;
445
std::vector<
RefTypeId
> class_ids;
465
RefTypeId
refTypeId
= request.ReadRefTypeId();
466
return Dbg::GetModifiers(
refTypeId
, pReply);
474
RefTypeId
refTypeId = request.ReadRefTypeId()
[
all
...]
jdwp_request.cc
123
RefTypeId
Request::ReadRefTypeId() {
124
RefTypeId
id = Read8BE();
object_registry.h
65
JDWP::
RefTypeId
AddRefType(mirror::Class* c)
object_registry.cc
39
JDWP::
RefTypeId
ObjectRegistry::AddRefType(mirror::Class* c) {
jdwp_event.cc
486
if (!Dbg::MatchType(basket.locationClass, pMod->classOnly.
refTypeId
)) {
506
if (pMod->exceptionOnly.
refTypeId
!= 0 &&
507
!Dbg::MatchType(basket.exceptionClass, pMod->exceptionOnly.
refTypeId
)) {
516
if (!Dbg::MatchField(pMod->fieldOnly.
refTypeId
, pMod->fieldOnly.fieldId, basket.field)) {
977
RefTypeId
field_type_id = registry->AddRefType(field->GetDeclaringClass());
[
all
...]
/art/runtime/
debugger.h
257
static std::string GetClassName(JDWP::
RefTypeId
id)
261
static JDWP::JdwpError GetClassObject(JDWP::
RefTypeId
id, JDWP::ObjectId& class_object_id)
263
static JDWP::JdwpError GetSuperclass(JDWP::
RefTypeId
id, JDWP::
RefTypeId
& superclass_id)
265
static JDWP::JdwpError GetClassLoader(JDWP::
RefTypeId
id, JDWP::ExpandBuf* pReply)
267
static JDWP::JdwpError GetModifiers(JDWP::
RefTypeId
id, JDWP::ExpandBuf* pReply)
269
static JDWP::JdwpError GetReflectedType(JDWP::
RefTypeId
class_id, JDWP::ExpandBuf* pReply)
271
static void GetClassList(std::vector<JDWP::
RefTypeId
>& classes)
273
static JDWP::JdwpError GetClassInfo(JDWP::
RefTypeId
class_id, JDWP::JdwpTypeTag* pTypeTag,
276
static void FindLoadedClassBySignature(const char* descriptor, std::vector<JDWP::
RefTypeId
>& ids
[
all
...]
debugger.cc
404
static mirror::Array* DecodeArray(JDWP::
RefTypeId
id, JDWP::JdwpError& status)
419
static mirror::Class* DecodeClass(JDWP::
RefTypeId
id, JDWP::JdwpError& status)
841
std::string Dbg::GetClassName(JDWP::
RefTypeId
class_id) {
863
JDWP::JdwpError Dbg::GetClassObject(JDWP::
RefTypeId
id, JDWP::ObjectId& class_object_id) {
873
JDWP::JdwpError Dbg::GetSuperclass(JDWP::
RefTypeId
id, JDWP::
RefTypeId
& superclass_id) {
888
JDWP::JdwpError Dbg::GetClassLoader(JDWP::
RefTypeId
id, JDWP::ExpandBuf* pReply) {
897
JDWP::JdwpError Dbg::GetModifiers(JDWP::
RefTypeId
id, JDWP::ExpandBuf* pReply) {
[
all
...]
Completed in 67 milliseconds