Home | History | Annotate | Download | only in utils

Lines Matching full:threadname

41     LocThreadDelegate(LocThread::tCreate creator, const char* threadName,
46 const char* threadName, LocRunnable* runnable, bool joinable);
67 const char* threadName, LocRunnable* runnable, bool joinable) :
72 if (!threadName) {
73 threadName = "LocThread";
79 mThandle = creator(threadName, threadMain, this);
88 int len = (sizeof(lname)>sizeof(threadName)) ?
89 (sizeof(threadName) -1):(sizeof(lname) - 1);
90 memcpy(lname, threadName, len);
114 const char* threadName, LocRunnable* runnable, bool joinable) {
117 thread = new LocThreadDelegate(creator, threadName, runnable, joinable);
213 bool LocThread::start(tCreate creator, const char* threadName, LocRunnable* runnable, bool joinable) {
216 mThread = LocThreadDelegate::create(creator, threadName, runnable, joinable);