MCPcopy Index your code
hub / github.com/nodejs/node / printEntries

Method printEntries

deps/v8/tools/tickprocessor.mjs:1050–1060  ·  view source on GitHub ↗
(
        profile, totalTicks, nonLibTicks, filterP, callback, printAllTicks)

Source from the content-addressed store, hash-verified

1048 }
1049
1050 printEntries(
1051 profile, totalTicks, nonLibTicks, filterP, callback, printAllTicks) {
1052 this.processProfile(profile, filterP, (rec) => {
1053 if (rec.selfTime == 0) return;
1054 callback(rec);
1055 const funcName = this.formatFunctionName(rec.internalFuncName);
1056 if (printAllTicks) {
1057 this.printLine(funcName, rec.selfTime, totalTicks, nonLibTicks);
1058 }
1059 });
1060 }
1061
1062 printHeavyProfile(profile, opt_indent) {
1063 const indent = opt_indent || 0;

Callers 1

printStatisticsMethod · 0.95

Calls 4

processProfileMethod · 0.95
formatFunctionNameMethod · 0.95
printLineMethod · 0.95
callbackFunction · 0.50

Tested by

no test coverage detected