Lines Matching refs:cout

72     cout << setw(LOGTYPE_W) << "LOGTYPE" << colCmd;
73 cout << setw(DOMAIN_TITLE_W) << "DOMAIN" << colCmd;
78 cout << setw(LOGTYPE_W) << "LOGTYPE" << colCmd;
79 cout << setw(PID_W) << "PID" << colCmd;
80 cout << setw(PNAME_W) << "NAME" << colCmd;
85 cout << setw(TAG_W) << "TAG" << colCmd;
86 cout << setw(FREQ_W) << "MAX_FREQ" << colCmd;
87 cout << setw(TIME_W) << "TIME" << colCmd;
88 cout << setw(TP_W) << "MAX_TP" << colCmd;
89 cout << setw(TIME_W) << "TIME" << colCmd;
90 cout << setw(LINES_W) << "LINES" << colCmd;
91 cout << setw(LENGTH_W) << "LENGTH" << colCmd;
92 cout << setw(DROPPED_W) << "DROPPED" << colCmd;
117 cout << fixed;
118 cout << setw(FREQ_W) << setprecision(FLOAT_PRECSION) << rsp.freqMax << colCmd;
119 cout << setw(TIME_W) << TimeStr(rsp.freqMaxSec, rsp.freqMaxNsec) << colCmd;
120 cout << setw(TP_W) << setprecision(FLOAT_PRECSION) << rsp.throughputMax << colCmd;
121 cout << setw(TIME_W) << TimeStr(rsp.tpMaxSec, rsp.tpMaxNsec) << colCmd;
122 cout << setw(LINES_W) << GetTotalLines(rsp) << colCmd;
123 cout << setw(LENGTH_W) << Size2Str(GetTotalLen(rsp)) << colCmd;
124 cout << setw(DROPPED_W) << rsp.dropped << colCmd;
170 cout << "Domain Table:" << endl;
173 cout << endl;
185 cout << setw(LOGTYPE_W) << LogType2Str(ldStats.type) << colCmd;
186 cout << std::hex << "0x" << setw(DOMAIN_W) << dStats.domain << std::dec << colCmd;
187 cout << setw(TAG_W) << "-" << colCmd;
189 cout << endl;
198 cout << setw(LOGTYPE_W) << LogType2Str(ldStats.type) << colCmd;
199 cout << std::hex << "0x" << setw(DOMAIN_W) << dStats.domain << std::dec << colCmd;
200 cout << setw(TAG_W) << tStats.tag << colCmd;
202 cout << endl;
223 cout << setw(LOGTYPE_W) << logType << colCmd;
224 cout << setw(PID_W) << pid << colCmd;
225 cout << setw(PNAME_W) << processName << colCmd;
226 cout << setw(TAG_W) << tag << colCmd;
231 cout << "Pid Table:" << endl;
234 cout << endl;
246 cout << endl;
258 cout << endl;
269 cout << endl;
276 cout << std::left;
277 cout << "Log statistic report (Duration: " << DurationStr(rsp.durationSec, rsp.durationNsec);
278 cout << ", From: " << TimeStr(rsp.tsBeginSec, rsp.tsBeginNsec) << "):" << endl;
288 cout << "Total lines: " << lines << ", length: " << Size2Str(lens) << endl;
292 cout << level << " lines: " << rsp.totalLines[i];
293 cout << "(" << setprecision(FLOAT_PRECSION) << (static_cast<float>(rsp.totalLines[i] * PERCENT) / lines) <<
295 cout << ", length: " << Size2Str(rsp.totalLens[i]);
296 cout << "(" << setprecision(FLOAT_PRECSION) << (static_cast<float>(rsp.totalLens[i] * PERCENT) / lens) <<
298 cout<< endl;
300 cout << setw(STATS_W) << setfill('-') << "-" << endl;
302 cout << setw(STATS_W) << setfill('-') << "-" << endl;