Home
last modified time | relevance | path

Searched refs:mFilterThread (Results 1 – 8 of 8) sorted by relevance

/hardware/interfaces/tv/tuner/1.0/vts/functional/
DFilterTests.cpp25 pthread_create(&mFilterThread, NULL, __threadLoopFilter, (void*)threadArgs); in startFilterEventThread()
26 pthread_setname_np(mFilterThread, "test_playback_input_loop"); in startFilterEventThread()
DFilterTests.h128 pthread_t mFilterThread; variable
/hardware/interfaces/tv/tuner/1.0/default/
DFilter.h127 pthread_t mFilterThread; variable
DFilter.cpp192 pthread_create(&mFilterThread, NULL, __threadLoopFilter, this); in startFilterLoop()
193 pthread_setname_np(mFilterThread, "filter_waiting_loop"); in startFilterLoop()
/hardware/interfaces/tv/tuner/1.1/default/
DFilter.h146 pthread_t mFilterThread; variable
DFilter.cpp369 pthread_create(&mFilterThread, NULL, __threadLoopFilter, this); in startFilterLoop()
370 pthread_setname_np(mFilterThread, "filter_waiting_loop"); in startFilterLoop()
/hardware/interfaces/tv/tuner/aidl/default/
DFilter.h181 std::thread mFilterThread; variable
DFilter.cpp377 if (mFilterThread.joinable()) { in stop()
378 mFilterThread.join(); in stop()
568 mFilterThread = std::thread(&Filter::filterThreadLoop, this); in startFilterLoop()