Home
last modified time | relevance | path

Searched refs:Thread (Results 1 – 3 of 3) sorted by relevance

/system/core/include/utils/
DThread.h39 class Thread : virtual public RefBase
44 Thread(bool canCallJava = true);
45 virtual ~Thread();
92 Thread& operator=(const Thread&);
103 sp<Thread> mHoldSelf;
/system/core/libutils/
DThreads.cpp672 Thread::Thread(bool canCallJava) in Thread() function in android::Thread
684 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 …]
/system/core/libutils/tests/
DTestHelpers.h59 class DelayedTask : public Thread {