Searched refs:Thread (Results 1 – 4 of 4) 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;
654 Thread::Thread(bool canCallJava) in Thread() function in android::Thread666 Thread::~Thread() in ~Thread()670 status_t Thread::readyToRun() in readyToRun()675 status_t Thread::run(const char* name, int32_t priority, size_t stack) in run()722 int Thread::_threadLoop(void* user) in _threadLoop()724 Thread* const self = static_cast<Thread*>(user); in _threadLoop()726 sp<Thread> strong(self->mHoldSelf); in _threadLoop()727 wp<Thread> weak(strong); in _threadLoop()787 void Thread::requestExit() in requestExit()793 status_t Thread::requestExitAndWait() in requestExitAndWait()[all …]
59 class DelayedTask : public Thread {
44 class PingReplyThread(threading.Thread):