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
50
std::string DescribeRefTypeId(const
RefTypeId
& ref_type_id) {
87
RefTypeId
class_id, MethodId method_id, bool is_constructor)
154
std::vector<
RefTypeId
> ids;
222
expandBufAdd4BE(pReply, sizeof(
RefTypeId
));
354
std::vector<JDWP::
RefTypeId
> classes;
399
std::vector<
RefTypeId
> class_ids;
419
RefTypeId
refTypeId
= request->ReadRefTypeId();
420
return Dbg::GetModifiers(
refTypeId
, pReply);
428
RefTypeId
refTypeId = request->ReadRefTypeId()
[
all
...]
jdwp.h
53
* ObjectId and
RefTypeId
must be the same size.
60
typedef uint64_t
RefTypeId
; /* like ObjectID, but unique for Class objects */
68
static inline void SetRefTypeId(uint8_t* buf,
RefTypeId
val) { return Set8BE(buf, val); }
73
static inline void expandBufAddRefTypeId(ExpandBuf* pReply,
RefTypeId
id) { expandBufAdd8BE(pReply, id); }
86
RefTypeId
class_id;
415
std::string DescribeRefTypeId(const
RefTypeId
& ref_type_id) SHARED_REQUIRES(Locks::mutator_lock_);
445
RefTypeId
ReadRefTypeId() SHARED_REQUIRES(Locks::mutator_lock_);
jdwp_request.cc
123
RefTypeId
Request::ReadRefTypeId() {
124
RefTypeId
id = Read8BE();
object_registry.h
69
JDWP::
RefTypeId
AddRefType(mirror::Class* c)
78
JDWP::
RefTypeId
AddRefType(Handle<mirror::Class> c_h)
object_registry.cc
38
JDWP::
RefTypeId
ObjectRegistry::AddRefType(mirror::Class* c) {
42
JDWP::
RefTypeId
ObjectRegistry::AddRefType(Handle<mirror::Class> c_h) {
jdwp_event.cc
471
if (!Dbg::MatchType(basket.locationClass.Get(), pMod->classOnly.
refTypeId
)) {
491
if (pMod->exceptionOnly.
refTypeId
!= 0 &&
492
!Dbg::MatchType(basket.exceptionClass.Get(), pMod->exceptionOnly.
refTypeId
)) {
501
if (!Dbg::MatchField(pMod->fieldOnly.
refTypeId
, pMod->fieldOnly.fieldId, basket.field)) {
956
RefTypeId
field_type_id = registry->AddRefType(field->GetDeclaringClass());
[
all
...]
/art/runtime/
debugger.h
262
static std::string GetClassName(JDWP::
RefTypeId
id)
266
static JDWP::JdwpError GetClassObject(JDWP::
RefTypeId
id, JDWP::ObjectId* class_object_id)
268
static JDWP::JdwpError GetSuperclass(JDWP::
RefTypeId
id, JDWP::
RefTypeId
* superclass_id)
270
static JDWP::JdwpError GetClassLoader(JDWP::
RefTypeId
id, JDWP::ExpandBuf* pReply)
272
static JDWP::JdwpError GetModifiers(JDWP::
RefTypeId
id, JDWP::ExpandBuf* pReply)
274
static JDWP::JdwpError GetReflectedType(JDWP::
RefTypeId
class_id, JDWP::ExpandBuf* pReply)
276
static void GetClassList(std::vector<JDWP::
RefTypeId
>* classes)
278
static JDWP::JdwpError GetClassInfo(JDWP::
RefTypeId
class_id, JDWP::JdwpTypeTag* pTypeTag,
281
static void FindLoadedClassBySignature(const char* descriptor, std::vector<JDWP::
RefTypeId
>* ids
[
all
...]
debugger.cc
350
static mirror::Array* DecodeNonNullArray(JDWP::
RefTypeId
id, JDWP::JdwpError* error)
365
static mirror::Class* DecodeClass(JDWP::
RefTypeId
id, JDWP::JdwpError* error)
708
std::string Dbg::GetClassName(JDWP::
RefTypeId
class_id) {
732
JDWP::JdwpError Dbg::GetClassObject(JDWP::
RefTypeId
id, JDWP::ObjectId* class_object_id) {
743
JDWP::JdwpError Dbg::GetSuperclass(JDWP::
RefTypeId
id, JDWP::
RefTypeId
* superclass_id) {
759
JDWP::JdwpError Dbg::GetClassLoader(JDWP::
RefTypeId
id, JDWP::ExpandBuf* pReply) {
769
JDWP::JdwpError Dbg::GetModifiers(JDWP::
RefTypeId
id, JDWP::ExpandBuf* pReply) {
889
JDWP::JdwpError Dbg::GetInstanceCounts(const std::vector<JDWP::
RefTypeId
>& class_ids,
908
JDWP::JdwpError Dbg::GetInstances(JDWP::
RefTypeId
class_id, int32_t max_count
[
all
...]
Completed in 49 milliseconds