HomeSort by relevance Sort by last modified time
    Searched refs:ProcessThreadImpl (Results 1 - 3 of 3) sorted by null

  /external/webrtc/webrtc/modules/utility/source/
process_thread_impl.cc 41 return rtc::scoped_ptr<ProcessThread>(new ProcessThreadImpl(thread_name));
44 ProcessThreadImpl::ProcessThreadImpl(const char* thread_name)
49 ProcessThreadImpl::~ProcessThreadImpl() {
60 void ProcessThreadImpl::Start() {
79 new rtc::PlatformThread(&ProcessThreadImpl::Run, this, thread_name_));
83 void ProcessThreadImpl::Stop() {
110 void ProcessThreadImpl::WakeUp(Module* module) {
122 void ProcessThreadImpl::PostTask(rtc::scoped_ptr<ProcessTask> task)
    [all...]
process_thread_impl_unittest.cc 56 TEST(ProcessThreadImpl, StartStop) {
57 ProcessThreadImpl thread("ProcessThread");
62 TEST(ProcessThreadImpl, MultipleStartStop) {
63 ProcessThreadImpl thread("ProcessThread");
71 TEST(ProcessThreadImpl, ProcessCall) {
72 ProcessThreadImpl thread("ProcessThread");
93 TEST(ProcessThreadImpl, ProcessCall2) {
94 ProcessThreadImpl thread("ProcessThread");
115 TEST(ProcessThreadImpl, Deregister) {
116 ProcessThreadImpl thread("ProcessThread")
    [all...]
process_thread_impl.h 26 class ProcessThreadImpl : public ProcessThread {
28 explicit ProcessThreadImpl(const char* thread_name);
29 ~ProcessThreadImpl() override;

Completed in 5457 milliseconds