MCPcopy Create free account
hub / github.com/SOUI2/soui / getName

Method getName

components/TaskLoop/TaskLoop.cpp:173–180  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

171 }
172
173 bool STaskLoop::getName(char * pszBuf, int nBufLen)
174 {
175 SAutoLock autoLock(m_taskListLock);
176 if (m_strName.length() >= (size_t)nBufLen)
177 return false;
178 strcpy_s(pszBuf, nBufLen, m_strName.c_str());
179 return true;
180 }
181
182 void STaskLoop::cancelTasksForObject(void *object)
183 {

Callers

nothing calls this directly

Calls 2

lengthMethod · 0.45
c_strMethod · 0.45

Tested by

no test coverage detected