Home
last modified time | relevance | path

Searched refs:os (Results 1 – 5 of 5) sorted by relevance

/mipi-sys-t-3.7.0/printer/src/
Dmipi_syst_message.cpp248 void csvQuoteString(std::ostream& os, const std::string& s) in csvQuoteString() argument
252 os << ' '; // newline not supported in CSV in csvQuoteString()
254 os << c << c; in csvQuoteString()
256 os << c; in csvQuoteString()
299 std::ostream& operator << (std::ostream& os, const message& msg) in operator <<() argument
309 os << status2string(msg) << delimiter; in operator <<()
312 os << '"'; in operator <<()
313 csvQuoteString(os, msg.getPayload()); in operator <<()
314 os << '"' << delimiter; in operator <<()
320 os << ",,,,," << std::endl; in operator <<()
[all …]
Dmipi_syst_main.cpp114 static void readAndPrint(std::istream& is, std::ostream& os, in readAndPrint() argument
143 os << msg.getPayload() << std::endl; in readAndPrint()
145 os << msg; in readAndPrint()
231 std::ostream * os(&std::cout); in main() local
240 os = &ofs; in main()
244 *os << mipi::syst::message::csvHeaderString << std::endl; in main()
248 readAndPrint(std::cin, *os, payload_only, short_ctx.get(), decoder); in main()
255 readAndPrint(ifs, *os, payload_only, short_ctx.get(), decoder); in main()
Dmipi_syst_collateral.cpp185 template<typename T> std::ostream & operator<<(std::ostream &os, const collateral::catalogentry<T>&… in operator <<() argument
187 return os << p.msg; in operator <<()
309 std::ostream& operator<<(std::ostream& os, const guid& g) in operator <<() argument
311 auto flags(os.flags()); in operator <<()
314 os << '{'; in operator <<()
317 os << std::setfill('0') << std::noshowbase << std::hex << std::setw(2) in operator <<()
321 os << '-'; in operator <<()
325 os << '}'; in operator <<()
327 os.flags(flags); in operator <<()
328 return os; in operator <<()
/mipi-sys-t-3.7.0/printer/include/
Dmipi_syst_guid.h112 std::ostream& operator<<(std::ostream& os, const guid& guid);
Dmipi_syst_message.h225 std::ostream& operator<<(std::ostream& os, const message& msg);