• Home
  • History
  • Annotate
  • Raw
  • Download

Lines Matching refs:context

876   StackDumpVisitor(std::ostream& os, Thread* thread, Context* context, bool can_allocate)  in StackDumpVisitor()
878 : StackVisitor(thread, context), os(os), thread(thread), can_allocate(can_allocate), in StackDumpVisitor()
934 static void DumpLockedObject(mirror::Object* o, void* context) in DumpLockedObject()
936 std::ostream& os = *reinterpret_cast<std::ostream*>(context); in DumpLockedObject()
1012 std::unique_ptr<Context> context(Context::Create()); in DumpJavaStack() local
1013 StackDumpVisitor dumper(os, const_cast<Thread*>(this), context.get(), in DumpJavaStack()
1986 CurrentMethodVisitor(Thread* thread, Context* context, bool abort_on_error) in CurrentMethodVisitor()
1988 : StackVisitor(thread, context), this_object_(nullptr), method_(nullptr), dex_pc_(0), in CurrentMethodVisitor()
2019 Context* context = GetLongJumpContext(); in GetCurrentLocationForThrow() local
2020 CurrentMethodVisitor visitor(this, context, true); in GetCurrentLocationForThrow()
2022 ReleaseLongJumpContext(context); in GetCurrentLocationForThrow()
2037 ReferenceMapVisitor(Thread* thread, Context* context, const RootVisitor& visitor) in ReferenceMapVisitor() argument
2039 : StackVisitor(thread, context), visitor_(visitor) {} in ReferenceMapVisitor()
2233 Context* context = GetLongJumpContext(); in VisitRoots() local
2235 ReferenceMapVisitor<RootCallbackVisitor> mapper(this, context, visitor_to_callback); in VisitRoots()
2237 ReleaseLongJumpContext(context); in VisitRoots()
2254 std::unique_ptr<Context> context(Context::Create()); in VerifyStackImpl() local
2256 ReferenceMapVisitor<RootCallbackVisitor> mapper(this, context.get(), visitorToCallback); in VerifyStackImpl()