Searched defs:MethodId (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.
58 typedef uint64_t MethodId; /* any kind of method, including constructors */ typedef in namespace:art::JDWP
66 static inline void SetMethodId(uint8_t* buf, MethodId val) { return Set8BE(buf, val); }
71 static inline void expandBufAddMethodId(ExpandBuf* pReply, MethodId id) { expandBufAdd8BE(pReply, id); }
87 MethodId method_id;
419 std::string DescribeMethod(const MethodId& method_id) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
438 MethodId ReadMethodId() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
/art/runtime/
H A Ddex_file.h174 struct MethodId { struct in class:art::DexFile
180 DISALLOW_COPY_AND_ASSIGN(MethodId);
604 // Returns the MethodId at the specified index.
605 const MethodId& GetMethodId(uint32_t idx) const {
610 uint32_t GetIndexForMethodId(const MethodId& method_id) const {
617 const MethodId* FindMethodId(const DexFile::TypeId& declaring_klass,
622 const char* GetMethodDeclaringClassDescriptor(const MethodId& method_id) const {
628 const ProtoId& GetMethodPrototype(const MethodId& method_id) const {
633 const Signature GetMethodSignature(const MethodId& method_id) const;
636 const char* GetMethodName(const MethodId
[all...]

Completed in 1392 milliseconds