Searched defs:FieldId (Results 1 - 2 of 2) sorted by relevance

/art/runtime/jdwp/
H A Djdwp.h54 * Its OK to change MethodId and FieldId sizes as long as the size is <= 8 bytes.
57 typedef uint64_t FieldId; /* static or instance field */ typedef in namespace:art::JDWP
65 static inline void SetFieldId(uint8_t* buf, FieldId val) { return Set8BE(buf, val); }
70 static inline void expandBufAddFieldId(ExpandBuf* pReply, FieldId id) { expandBufAdd8BE(pReply, id); }
418 std::string DescribeField(const FieldId& field_id) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
436 FieldId ReadFieldId() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
/art/runtime/
H A Ddex_file.h164 struct FieldId { struct in class:art::DexFile
170 DISALLOW_COPY_AND_ASSIGN(FieldId);
564 // Returns the FieldId at the specified index.
565 const FieldId& GetFieldId(uint32_t idx) const {
570 uint32_t GetIndexForFieldId(const FieldId& field_id) const {
577 const FieldId* FindFieldId(const DexFile::TypeId& declaring_klass,
582 const char* GetFieldDeclaringClassDescriptor(const FieldId& field_id) const {
588 const char* GetFieldTypeDescriptor(const FieldId& field_id) const {
594 const char* GetFieldName(const FieldId& field_id) const {
1009 const FieldId* cons
[all...]

Completed in 70 milliseconds