Home | History | Annotate | Download | only in utils

Lines Matching refs:mThandle

37     pthread_t mThandle;
68 mRunnable(runnable), mJoinable(joinable), mThandle((pthread_t)NULL),
79 mThandle = creator(threadName, threadMain, this);
80 } else if (pthread_create(&mThandle, NULL, threadMain, this)) {
82 mThandle = (pthread_t)NULL;
85 if (mThandle) {
93 pthread_setname_np(mThandle, lname);
97 pthread_detach(mThandle);
130 // the obj must remain alive at this time so that mThandle
144 pthread_join(mThandle, NULL);