Lines Matching refs:pFileNameTop
85 char* pFileNameTop = (char8*)std::strrchr(path, '\\'); in GetBaseName() local
86 if (!pFileNameTop) in GetBaseName()
90 return pFileNameTop + 1; in GetBaseName()
234 char* pFileNameTop = GetBaseName(fileName); in PrintLog() local
235 char* pModulePosition = std::strchr(pFileNameTop, '_'); in PrintLog()
239 …_t>(MODULE_LENGTH, reinterpret_cast<uptr>(pModulePosition) - reinterpret_cast<uptr>(pFileNameTop)); in PrintLog()
240 … len += SafeTSNPrintf(&buffer[len], sizeof(buffer) - len, "[%0.*s]", moduleLength, pFileNameTop); in PrintLog()
294 char8* pFileNameTop; in PrintLog() local
297 pFileNameTop = GetBaseName(fileName); in PrintLog()
301 pFileNameTop = (char8*)fileName; in PrintLog()
312 len += SafeTSNPrintf(&buffer[len], sizeof(buffer) - len, " (%s:%d)", pFileNameTop, line); in PrintLog()