Lines Matching refs:os
42 static void DumpCmdLine(std::ostream& os) { in DumpCmdLine() argument
52 os << "Cmd line: " << current_cmd_line << "\n"; in DumpCmdLine()
56 os << "Original command line: " << stashed_cmd_line << "\n"; in DumpCmdLine()
60 os << "Cmd line: " << GetCmdLine() << "\n"; in DumpCmdLine()
138 std::ostringstream os; in HandleSigQuit() local
139 os << "\n" in HandleSigQuit()
142 DumpCmdLine(os); in HandleSigQuit()
145 os << "ABI: " << GetInstructionSetString(runtime->GetInstructionSet()) << "\n"; in HandleSigQuit()
147 os << "Build type: " << (kIsDebugBuild ? "debug" : "optimized") << "\n"; in HandleSigQuit()
149 runtime->DumpForSigQuit(os); in HandleSigQuit()
154 os << "/proc/self/maps:\n" << maps; in HandleSigQuit()
157 os << "----- end " << getpid() << " -----\n"; in HandleSigQuit()
166 Output(os.str()); in HandleSigQuit()