MCPcopy Create free account
hub / github.com/SIPp/sipp / dump

Method dump

src/infile.cpp:277–288  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

275}
276
277void FileContents::dump(void)
278{
279 WARNING("Line choosing strategy is [%s]. m_counter [%d] numLinesInFile [%d] realLinesInFile [%d]",
280 usage == InputFileSequentialOrder ? "SEQUENTIAL" :
281 usage == InputFileRandomOrder ? "RANDOM" :
282 usage == InputFileUser ? "USER" : "UNKNOWN",
283 lineCounter, numLinesInFile, realLinesInFile);
284
285 for (int i = 0; i < realLinesInFile && fileLines[i][0]; i++) {
286 WARNING("%s:%d reads [%s]", fileName, i, fileLines[i].c_str());
287 }
288}
289
290void FileContents::index(int field)
291{

Callers

nothing calls this directly

Calls 1

WARNINGFunction · 0.85

Tested by

no test coverage detected