Lines Matching refs:functionName
66 … GetNativeStack(vm, it, codeEntry.functionName, sizeof(codeEntry.functionName), isCpuProfiler); in ParseMethodInfo()
70 const char *functionName = MethodLiteral::GetMethodName(jsPandaFile, methodId, true); in ParseMethodInfo() local
71 uint8_t length = strlen(functionName); in ParseMethodInfo()
72 if (length != 0 && functionName[0] == '#') { in ParseMethodInfo()
74 while (functionName[index] != '#') { in ParseMethodInfo()
77 functionName += (index + 1); in ParseMethodInfo()
79 if (strlen(functionName) == 0) { in ParseMethodInfo()
80 functionName = "anonymous"; in ParseMethodInfo()
82 if (!CheckAndCopy(codeEntry.functionName, sizeof(codeEntry.functionName), functionName)) { in ParseMethodInfo()
123 void JsStackGetter::GetNativeStack(const EcmaVM *vm, const FrameIterator &it, char *functionName, s… in GetNativeStack() argument
149 CheckAndCopy(functionName, size, methodNameStr.c_str()); in GetNativeStack()
151 CheckAndCopy(functionName + methodNameStrLength, size - methodNameStrLength, "("); in GetNativeStack()
153 CheckAndCopy(functionName + methodNameStrLength + napiBeginLength, in GetNativeStack()
156 CheckAndCopy(functionName + methodNameStrLength + napiBeginLength + srcLength, in GetNativeStack()
161 CheckAndCopy(functionName, size, methodNameStr.c_str()); in GetNativeStack()