MCPcopy Create free account
hub / github.com/audacity/audacity / End

Method End

src/Profiler.cpp:70–77  ·  view source on GitHub ↗

end the task timer.

Source from the content-addressed store, hash-verified

68
69///end the task timer.
70void Profiler::End(const char* fileName, int lineNum, const char* taskDescription)
71{
72 std::lock_guard<std::mutex> guard{ mTasksMutex };
73 TaskProfile* tp;
74 tp=GetTaskProfileByDescription(taskDescription);
75 if(tp)
76 tp->End(fileName,lineNum,taskDescription);
77}
78
79///Gets the singleton instance
80Profiler* Profiler::Instance()

Callers 7

cutClipIntoClipboardMethod · 0.45
copyClipIntoClipboardMethod · 0.45
removeClipMethod · 0.45
duplicateClipMethod · 0.45
clipSplitCutMethod · 0.45
clipSplitDeleteMethod · 0.45
clipDurationMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected