Searched refs:Thread (Results 1 – 3 of 3) sorted by relevance
39 class Thread : virtual public RefBase44 Thread(bool canCallJava = true);45 virtual ~Thread();92 Thread& operator=(const Thread&);103 sp<Thread> mHoldSelf;
672 Thread::Thread(bool canCallJava) in Thread() function in android::Thread684 Thread::~Thread() in ~Thread()688 status_t Thread::readyToRun() in readyToRun()693 status_t Thread::run(const char* name, int32_t priority, size_t stack) in run()740 int Thread::_threadLoop(void* user) in _threadLoop()742 Thread* const self = static_cast<Thread*>(user); in _threadLoop()744 sp<Thread> strong(self->mHoldSelf); in _threadLoop()745 wp<Thread> weak(strong); in _threadLoop()805 void Thread::requestExit() in requestExit()811 status_t Thread::requestExitAndWait() in requestExitAndWait()[all …]
59 class DelayedTask : public Thread {