LogCountedInstances
LogCountedInstances
#Overview
name: LogCountedInstances
This variable is created as a Console Variable (cvar).
- type:
Cmd
- help:
Dumps count of all tracked FInstanceCountingObject\'s
It is referenced in 2
C++ source files.
#Summary
#References in C++ code
#Callsites
This variable is referenced in the following C++ source code:
#Loc: <Workspace>/Engine/Source/Runtime/Core/Private/ProfilingDebugging/InstanceCounter.cpp:13
Scope: file
Source code excerpt:
*/
static FAutoConsoleCommandWithOutputDevice FInstanceCountingDumpCommand(
TEXT("LogCountedInstances"),
TEXT("Dumps count of all tracked FInstanceCountingObject's"),
FConsoleCommandWithOutputDeviceDelegate::CreateStatic(&FInstanceCountingObject::LogCounts)
);
FInstanceCountingObject::FGlobalVars& FInstanceCountingObject::GetGlobals()
{
#Loc: <Workspace>/Engine/Source/Runtime/Core/Public/ProfilingDebugging/InstanceCounter.h:54
Scope (from outer to inner):
file
class class FInstanceCountingObject
Source code excerpt:
/**
* Dumps stats for all counted instances to the provided output device. This
* is bound to the "LogCountedInstances" console command
*
* @param: OutputDevice
* @return: void
*/static CORE_API void LogCounts(FOutputDevice& OutputDevice);
protected:
/** Increments stats for objects of this type */
CORE_API void IncrementStats();
/** Decrements stats for objects of this type */
CORE_API void DecrementStats();