Lines Matching refs:os

515   void Dump(std::ostream& os) const {  in Dump()
517 os << "Runtime aborting --- recursively, so no thread-specific detail!\n"; in Dump()
518 DumpRecursiveAbort(os); in Dump()
522 os << "Runtime aborting...\n"; in Dump()
524 os << "(Runtime does not yet exist!)\n"; in Dump()
525 DumpNativeStack(os, GetTid(), nullptr, " native: ", nullptr); in Dump()
533 DumpAllThreads(os, self); in Dump()
536 os << "(Aborting thread was not attached to runtime!)\n"; in Dump()
537 DumpNativeStack(os, GetTid(), nullptr, " native: ", nullptr); in Dump()
539 os << "Aborting thread:\n"; in Dump()
541 DumpThread(os, self); in Dump()
544 DumpThread(os, self); in Dump()
552 void DumpThread(std::ostream& os, Thread* self) const NO_THREAD_SAFETY_ANALYSIS { in DumpThread()
554 self->Dump(os); in DumpThread()
557 os << "Pending exception " << exception->Dump(); in DumpThread()
561 void DumpAllThreads(std::ostream& os, Thread* self) const { in DumpAllThreads()
573 os << "Skipping all-threads dump as locks are held:" in DumpAllThreads()
581 os << "Skipping all-threads dump as mutator lock is exclusively held."; in DumpAllThreads()
586 os << "Dumping all threads without mutator lock held\n"; in DumpAllThreads()
588 os << "All threads:\n"; in DumpAllThreads()
589 thread_list->Dump(os); in DumpAllThreads()
595 void DumpRecursiveAbort(std::ostream& os) const NO_THREAD_SAFETY_ANALYSIS { in DumpRecursiveAbort()
605 DumpNativeStack(os, GetTid()); in DumpRecursiveAbort()
1990 std::ostream& operator<<(std::ostream& os, const DeoptimizationKind& kind) { in operator <<() argument
1991 os << GetDeoptimizationKindName(kind); in operator <<()
1992 return os; in operator <<()
1995 void Runtime::DumpDeoptimizations(std::ostream& os) { in DumpDeoptimizations() argument
1998 os << "Number of " in DumpDeoptimizations()
2007 void Runtime::DumpForSigQuit(std::ostream& os) { in DumpForSigQuit() argument
2008 GetClassLinker()->DumpForSigQuit(os); in DumpForSigQuit()
2009 GetInternTable()->DumpForSigQuit(os); in DumpForSigQuit()
2010 GetJavaVM()->DumpForSigQuit(os); in DumpForSigQuit()
2011 GetHeap()->DumpForSigQuit(os); in DumpForSigQuit()
2012 oat_file_manager_->DumpForSigQuit(os); in DumpForSigQuit()
2014 GetJit()->DumpForSigQuit(os); in DumpForSigQuit()
2016 os << "Running non JIT\n"; in DumpForSigQuit()
2018 DumpDeoptimizations(os); in DumpForSigQuit()
2019 TrackedAllocators::Dump(os); in DumpForSigQuit()
2020 os << "\n"; in DumpForSigQuit()
2022 thread_list_->DumpForSigQuit(os); in DumpForSigQuit()
2023 BaseMutex::DumpAll(os); in DumpForSigQuit()
2032 void Runtime::DumpLockHolders(std::ostream& os) { in DumpLockHolders() argument
2038 os << "Mutator lock exclusive owner tid: " << mutator_lock_owner << "\n" in DumpLockHolders()