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

/art/runtime/jdwp/
H A Djdwp.h55 typedef uint32_t MethodId; /* any kind of method, including constructors */ typedef in namespace:art::JDWP
63 static inline void SetMethodId(uint8_t* buf, MethodId val) { return Set4BE(buf, val); }
68 static inline void expandBufAddMethodId(ExpandBuf* pReply, MethodId id) { expandBufAdd4BE(pReply, id); }
84 MethodId method_id;
387 std::string DescribeMethod(const MethodId& method_id) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
406 MethodId ReadMethodId() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
/art/runtime/
H A Ddex_file.h173 struct MethodId { struct in class:art::DexFile
179 DISALLOW_COPY_AND_ASSIGN(MethodId);
587 // Returns the MethodId at the specified index.
588 const MethodId& GetMethodId(uint32_t idx) const {
593 uint32_t GetIndexForMethodId(const MethodId& method_id) const {
600 const MethodId* FindMethodId(const DexFile::TypeId& declaring_klass,
605 const char* GetMethodDeclaringClassDescriptor(const MethodId& method_id) const {
611 const ProtoId& GetMethodPrototype(const MethodId& method_id) const {
616 const Signature GetMethodSignature(const MethodId& method_id) const;
619 const char* GetMethodName(const MethodId
[all...]

Completed in 102 milliseconds