Lines Matching refs:functionName
65 … GetNativeStack(vm, it, codeEntry.functionName, sizeof(codeEntry.functionName), isCpuProfiler); in ParseMethodInfo()
69 const char *functionName = MethodLiteral::GetMethodName(jsPandaFile, methodId); in ParseMethodInfo() local
70 uint8_t length = strlen(functionName); in ParseMethodInfo()
71 if (length != 0 && functionName[0] == '#') { in ParseMethodInfo()
73 while (functionName[index] != '#') { in ParseMethodInfo()
76 functionName += (index + 1); in ParseMethodInfo()
78 if (strlen(functionName) == 0) { in ParseMethodInfo()
79 functionName = "anonymous"; in ParseMethodInfo()
81 if (!CheckAndCopy(codeEntry.functionName, sizeof(codeEntry.functionName), functionName)) { in ParseMethodInfo()
122 void JsStackGetter::GetNativeStack(const EcmaVM *vm, const FrameIterator &it, char *functionName, s… in GetNativeStack() argument
148 CheckAndCopy(functionName, size, methodNameStr.c_str()); in GetNativeStack()
150 CheckAndCopy(functionName + methodNameStrLength, size - methodNameStrLength, "("); in GetNativeStack()
152 CheckAndCopy(functionName + methodNameStrLength + napiBeginLength, in GetNativeStack()
155 CheckAndCopy(functionName + methodNameStrLength + napiBeginLength + srcLength, in GetNativeStack()
160 CheckAndCopy(functionName, size, methodNameStr.c_str()); in GetNativeStack()