• Home
  • Raw
  • Download

Lines Matching refs:func

167     let func = gFunctionMap[funcId];
168 if (func.hasOwnProperty('s')) {
169 return {fileId: func.s[0], startLine: func.s[1], endLine: func.s[2]};
175 let func = gFunctionMap[funcId];
176 return func.hasOwnProperty('d') ? func.d : null;
511 for (let func of this.libInfo.functions) {
512 rows.push(getItem('Function: ' + getFuncName(func.f), func.c[1],
682 for (let [t, func] of lib.functions.entries()) {
683 let totalValue = getSampleWeight(func.c[2]);
684 let selfValue = getSampleWeight(func.c[1]);
686 data.push([totalValue, selfValue, func.c[0], processName,
687 threadName, libName, getFuncName(func.f), key])
719 let func = lib.functions[indexes[3]];
720 FunctionTab.showFunction(eventInfo, processInfo, threadInfo, lib, func);
863 static showFunction(eventInfo, processInfo, threadInfo, lib, func) { argument
870 .then(() => tab.setFunction(eventInfo, processInfo, threadInfo, lib, func));
874 this.func = null;
882 setFunction(eventInfo, processInfo, threadInfo, lib, func) { argument
887 this.func = func;
894 if (!this.func) {
905 let funcId = this.func.f;
933 let sourceFiles = collectSourceFilesForFunction(this.func);
940 let disassembly = collectDisassemblyForFunction(this.func);
959 let funcName = getFuncName(this.func.f);
1494 function collectSourceFilesForFunction(func) { argument
1495 if (!func.hasOwnProperty('s')) {
1498 let hitLines = func.s;
1510 let funcRange = getFuncSourceRange(func.f);
1601 function collectDisassemblyForFunction(func) { argument
1602 if (!func.hasOwnProperty('a')) {
1605 let hitAddrs = func.a;
1606 let rawCode = getFuncDisassembly(func.f);