Lines Matching refs:os

1343 void Thread::ShortDump(std::ostream& os) const {  in ShortDump()
1344 os << "Thread["; in ShortDump()
1347 os << GetThreadId() in ShortDump()
1350 os << GetState() in ShortDump()
1357 void Thread::Dump(std::ostream& os, bool dump_native_stack, BacktraceMap* backtrace_map, in Dump() argument
1359 DumpState(os); in Dump()
1360 DumpStack(os, dump_native_stack, backtrace_map, force_dump_stack); in Dump()
1805 void Thread::DumpState(std::ostream& os, const Thread* thread, pid_t tid) { in DumpState() argument
1858 os << '"' << *thread->tlsPtr_.name << '"'; in DumpState()
1860 os << " daemon"; in DumpState()
1862 os << " prio=" << priority in DumpState()
1866 os << " (still starting up)"; in DumpState()
1868 os << "\n"; in DumpState()
1870 os << '"' << ::art::GetThreadName(tid) << '"' in DumpState()
1877 os << " | group=\"" << group_name << "\"" in DumpState()
1893 os << " | sysTid=" << tid in DumpState()
1914 os << " sched=" << policy << "/" << sp.sched_priority in DumpState()
1917 os << "\n"; in DumpState()
1935 os << " | state=" << native_thread_state in DumpState()
1942 os << " | stack=" << reinterpret_cast<void*>(thread->tlsPtr_.stack_begin) << "-" in DumpState()
1946 os << " | held mutexes="; in DumpState()
1951 os << " \"" << mutex->GetName() << "\""; in DumpState()
1955 os << "(exclusive held)"; in DumpState()
1957 os << "(shared held)"; in DumpState()
1963 os << "\n"; in DumpState()
1967 void Thread::DumpState(std::ostream& os) const { in DumpState()
1968 Thread::DumpState(os, this, GetTid()); in DumpState()
1983 os(os_in), in StackDumpVisitor()
1990 os << " (no managed stack frames)\n"; in ~StackDumpVisitor()
2010 os << " ... repeated " << (repetition_count - kMaxRepetition) << " times\n"; in StartMethod()
2022 os << " at " << m->PrettyMethod(false); in StartMethod()
2024 os << "(Native method)"; in StartMethod()
2027 os << "(" << (source_file != nullptr ? source_file : "unavailable") in StartMethod()
2030 os << "\n"; in StartMethod()
2080 os << msg << "an unknown object"; in PrintObject()
2086 os << msg << StringPrintf("<@addr=0x%" PRIxPTR "> (a %s)", in PrintObject()
2094 os << msg << StringPrintf("<0x%08x> (a %s)", obj->IdentityHashCode(), pretty_type.c_str()); in PrintObject()
2098 os << " held by thread " << owner_tid; in PrintObject()
2100 os << "\n"; in PrintObject()
2103 std::ostream& os; member
2136 void Thread::DumpJavaStack(std::ostream& os, bool check_suspended, bool dump_locks) const { in DumpJavaStack() argument
2157 StackDumpVisitor dumper(os, const_cast<Thread*>(this), context.get(), in DumpJavaStack()
2162 void Thread::DumpStack(std::ostream& os, in DumpStack() argument
2183 DumpNativeStack(os, GetTid(), backtrace_map, " native: ", method); in DumpStack()
2185 DumpJavaStack(os, in DumpStack()
2189 os << "Not able to dump stack of thread that isn't suspended"; in DumpStack()
3321 void Thread::DumpThreadOffset<PointerSize::k32>(std::ostream& os, uint32_t offset);
3323 void Thread::DumpThreadOffset<PointerSize::k64>(std::ostream& os, uint32_t offset);
3326 void Thread::DumpThreadOffset(std::ostream& os, uint32_t offset) { in DumpThreadOffset() argument
3329 os << (y); \ in DumpThreadOffset()
3349 os << #x; \ in DumpThreadOffset()
3358 os << #x; \ in DumpThreadOffset()
3524 os << offset; in DumpThreadOffset()
4161 std::ostream& operator<<(std::ostream& os, const Thread& thread) { in operator <<() argument
4162 thread.ShortDump(os); in operator <<()
4163 return os; in operator <<()