Lines Matching refs:os
26 inline std::ostream &operator << (std::ostream &os, const hub_app_name_t &appId) in operator <<() argument
32 std::ios::fmtflags f(os.flags()); in operator <<()
36 os << vendor << ", " << std::hex << std::setw(6) << seqId; in operator <<()
38 os << "#" << std::hex << appId.id; in operator <<()
39 os.flags(f); in operator <<()
41 return os; in operator <<()
44 void dumpBuffer(std::ostream &os, const char *pfx, const hub_app_name_t &appId, uint32_t evtId, con… in dumpBuffer() argument
47 os << pfx << ": [ID=" << appId << "; SZ=" << std::dec << len; in dumpBuffer()
49 os << "; EVT=" << std::hex << evtId; in dumpBuffer()
50 os << "]:" << std::hex; in dumpBuffer()
52 os << " " << std::setfill('0') << std::setw(2) << (unsigned int)p[i]; in dumpBuffer()
55 os << "; status=" << status << " [" << std::setfill('0') << std::setw(8) << status << "]"; in dumpBuffer()