| 415 | |
| 416 | |
| 417 | const string MemoryProfiler::STOP_HELP() |
| 418 | { |
| 419 | return HELP( |
| 420 | TLDR( |
| 421 | "Stops memory profiling and dumps collected data."), |
| 422 | DESCRIPTION( |
| 423 | "Instructs the memory profiler to stop collecting data" |
| 424 | "and dumps a file containing the collected data to disk," |
| 425 | "clearing that data from memory. Does nothing if profiling", |
| 426 | "has not been started before."), |
| 427 | AUTHENTICATION(true)); |
| 428 | } |
| 429 | |
| 430 | |
| 431 | const string MemoryProfiler::DOWNLOAD_RAW_HELP() |
nothing calls this directly
no test coverage detected