Ark Server API (ASA) - Wiki
|
#include <MallocLeakDetection.h>
Public Types | |
enum class | ESortOption { SortSize , SortRate , SortHash } |
Public Member Functions | |
FMallocLeakReportOptions () | |
Public Attributes | |
uint32 | SizeFilter |
float | RateFilter |
bool | OnlyNonDeleters |
uint32 | FrameStart |
uint32 | FrameEnd |
ESortOption | SortBy |
Options that can be supplied when calling FMallocLeakDetection::DumpOpenCallstacks
Definition at line 27 of file MallocLeakDetection.h.
Enumerator | |
---|---|
SortSize | |
SortRate | |
SortHash |
Definition at line 29 of file MallocLeakDetection.h.
|
inline |
uint32 FMallocLeakReportOptions::FrameEnd |
Only show allocations from before this frame
Definition at line 54 of file MallocLeakDetection.h.
uint32 FMallocLeakReportOptions::FrameStart |
Only show allocations after this frame
Definition at line 51 of file MallocLeakDetection.h.
bool FMallocLeakReportOptions::OnlyNonDeleters |
Restrict report to allocations that have no history of being deleted
Definition at line 48 of file MallocLeakDetection.h.
float FMallocLeakReportOptions::RateFilter |
If >0 only report allocations at a greater bytes/frame than this
Definition at line 45 of file MallocLeakDetection.h.
uint32 FMallocLeakReportOptions::SizeFilter |
If >0 only report allocations greater than this size
Definition at line 42 of file MallocLeakDetection.h.
ESortOption FMallocLeakReportOptions::SortBy |
Sort allocations by this (default - size)
Definition at line 57 of file MallocLeakDetection.h.