• Home
  • Raw
  • Download

Lines Matching full:method

24 #include "include/method.h"
33 #include "runtime/include/method.h"
45 Breakpoint(Method *method, uint32_t bcOffset) : method_(method), bc_offset_(bcOffset) {} in Breakpoint() argument
48 Method *GetMethod() const in GetMethod()
67 Method *method_;
75 …return (std::hash<Method *>()(bpoint.GetMethod())) ^ (std::hash<uint32_t>()(bpoint.GetBytecodeOffs… in operator()
189 void BytecodePcChanged(ManagedThread *thread, Method *method, uint32_t bcOffset) override;
219 …void ExceptionCatch(const ManagedThread *thread, const Method *method, uint32_t bcOffset) override;
221 void MethodEntry(ManagedThread *thread, Method *method) override;
222 void MethodExit(ManagedThread *thread, Method *method) override;
339 …:optional<Error> CallFunctionOn([[maybe_unused]] PtObject object, [[maybe_unused]] PtMethod method, in CallFunctionOn() argument
371 const tooling::Breakpoint *FindBreakpoint(const Method *method, uint32_t bcOffset) const;
372 bool RemoveBreakpoint(Method *method, uint32_t bcOffset);
386 bool HandleBreakpoint(const ManagedThread *thread, const Method *method, uint32_t bcOffset);
387 void HandleNotifyFramePop(ManagedThread *thread, Method *method, bool wasPoppedByException);
388 void HandleExceptionThrowEvent(ManagedThread *thread, Method *method, uint32_t bcOffset);
389 bool HandleStep(const ManagedThread *thread, const Method *method, uint32_t bcOffset);
391 bool HandlePropertyAccess(const ManagedThread *thread, const Method *method, uint32_t bcOffset);
392 bool HandlePropertyModify(const ManagedThread *thread, const Method *method, uint32_t bcOffset);
414 explicit PtDebugFrame(Method *method, const Frame *interpreterFrame);