Home
last modified time | relevance | path

Searched refs:Thread (Results 1 – 4 of 4) 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.cpp654 Thread::Thread(bool canCallJava) in Thread() function in android::Thread
666 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 …]
/system/core/libutils/tests/
DTestHelpers.h59 class DelayedTask : public Thread {
/system/extras/tests/net_test/
Dping6_test.py44 class PingReplyThread(threading.Thread):