HomeSort by relevance Sort by last modified time
    Searched refs:StackVisitor (Results 1 - 25 of 35) sorted by null

1 2

  /art/runtime/arch/
context.h 27 class StackVisitor;
43 virtual void FillCalleeSaves(const StackVisitor& fr)
  /art/runtime/
nth_caller_visitor.h 28 struct NthCallerVisitor : public StackVisitor {
30 : StackVisitor(thread, NULL), n(n), include_runtime_and_upcalls_(include_runtime_and_upcalls),
stack.cc 91 StackVisitor::StackVisitor(Thread* thread, Context* context)
98 StackVisitor::StackVisitor(Thread* thread, Context* context, size_t num_frames)
105 uint32_t StackVisitor::GetDexPc(bool abort_on_failure) const {
118 mirror::Object* StackVisitor::GetThisObject() const {
149 size_t StackVisitor::GetNativePcOffset() const {
154 bool StackVisitor::GetVReg(mirror::ArtMethod* m, uint16_t vreg, VRegKind kind,
201 bool StackVisitor::GetVRegPair(mirror::ArtMethod* m, uint16_t vreg, VRegKind kind_lo,
255 bool StackVisitor::SetVReg(mirror::ArtMethod* m, uint16_t vreg, uint32_t new_value
    [all...]
object_callbacks.h 36 class StackVisitor;
quick_exception_handler.cc 43 class CatchBlockStackVisitor FINAL : public StackVisitor {
48 : StackVisitor(self, context), self_(self), exception_(exception),
170 class DeoptimizeStackVisitor FINAL : public StackVisitor {
174 : StackVisitor(self, context), self_(self), exception_handler_(exception_handler),
299 class InstrumentationStackVisitor : public StackVisitor {
303 : StackVisitor(self, nullptr),
stack.h 403 JavaFrameRootInfo(uint32_t thread_id, const StackVisitor* stack_visitor, size_t vreg)
410 const StackVisitor* const stack_visitor_;
508 class StackVisitor {
510 StackVisitor(Thread* thread, Context* context) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
513 virtual ~StackVisitor() {}
737 StackVisitor(Thread* thread, Context* context, size_t num_frames)
monitor.h 40 class StackVisitor;
94 static void VisitLocks(StackVisitor* stack_visitor, void (*callback)(mirror::Object*, void*),
instrumentation.cc 202 struct InstallStackVisitor : public StackVisitor {
204 : StackVisitor(thread, context), instrumentation_stack_(thread->GetInstrumentationStack()),
341 struct RestoreStackVisitor : public StackVisitor {
344 : StackVisitor(thread, NULL), thread_(thread),
    [all...]
thread.cc     [all...]
debugger.cc 952 struct OwnedMonitorVisitor : public StackVisitor {
957 : StackVisitor(thread, context), current_stack_depth(0),
    [all...]
debugger.h 49 class StackVisitor;
651 static JDWP::JdwpError GetLocalValue(const StackVisitor& visitor,
656 static JDWP::JdwpError SetLocalValue(StackVisitor& visitor, int slot, JDWP::JdwpTag tag,
  /art/runtime/entrypoints/portable/
portable_thread_entrypoints.cc 25 class ShadowFrameCopyVisitor : public StackVisitor {
27 explicit ShadowFrameCopyVisitor(Thread* self) : StackVisitor(self, NULL), prev_frame_(NULL),
  /art/test/004-StackWalk/
stack_walk_jni.cc 44 struct TestReferenceMapVisitor : public StackVisitor {
47 : StackVisitor(thread, NULL) {
  /art/runtime/arch/arm/
context_arm.h 37 void FillCalleeSaves(const StackVisitor& fr) OVERRIDE SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
context_arm.cc 44 void ArmContext::FillCalleeSaves(const StackVisitor& fr) {
  /art/runtime/arch/arm64/
context_arm64.h 37 void FillCalleeSaves(const StackVisitor& fr) OVERRIDE;
context_arm64.cc 47 void Arm64Context::FillCalleeSaves(const StackVisitor& fr) {
  /art/runtime/arch/mips/
context_mips.h 36 void FillCalleeSaves(const StackVisitor& fr) OVERRIDE SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
context_mips.cc 43 void MipsContext::FillCalleeSaves(const StackVisitor& fr) {
  /art/runtime/arch/x86/
context_x86.h 36 void FillCalleeSaves(const StackVisitor& fr) OVERRIDE SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
context_x86.cc 39 void X86Context::FillCalleeSaves(const StackVisitor& fr) {
  /art/runtime/arch/x86_64/
context_x86_64.h 36 void FillCalleeSaves(const StackVisitor& fr) OVERRIDE SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
context_x86_64.cc 42 void X86_64Context::FillCalleeSaves(const StackVisitor& fr) {
  /art/runtime/native/
dalvik_system_VMStack.cc 89 struct ClosestUserClassLoaderVisitor : public StackVisitor {
91 : StackVisitor(thread, NULL), bootstrap(bootstrap), system(system), class_loader(NULL) {}
  /art/test/004-ReferenceMap/
stack_walk_refmap_jni.cc 47 struct ReferenceMap2Visitor : public StackVisitor {
50 : StackVisitor(thread, NULL) {

Completed in 167 milliseconds

1 2