Home
last modified time | relevance | path

Searched refs:threadArgs (Results 1 – 2 of 2) sorted by relevance

/hardware/interfaces/gnss/1.0/default/
DThreadCreationWrapper.cpp20 ThreadFuncArgs* threadArgs = reinterpret_cast<ThreadFuncArgs*>(arg); in threadFunc() local
21 threadArgs->fptr(threadArgs->args); in threadFunc()
29 auto threadArgs = new ThreadFuncArgs(start, arg); in createPthread() local
30 auto argPtr = std::unique_ptr<ThreadFuncArgs>(threadArgs); in createPthread()
35 threadArgs)); in createPthread()
/hardware/interfaces/tv/tuner/1.0/vts/functional/
DVtsHalTvTunerV1_0TargetTest.cpp260 static void* __threadLoopFilter(void* threadArgs);
294 struct FilterThreadArgs* threadArgs = in startFilterEventThread() local
296 threadArgs->user = this; in startFilterEventThread()
297 threadArgs->event = event; in startFilterEventThread()
299 pthread_create(&mFilterThread, NULL, __threadLoopFilter, (void*)threadArgs); in startFilterEventThread()
326 void* FilterCallback::__threadLoopFilter(void* threadArgs) { in __threadLoopFilter() argument
328 static_cast<FilterCallback*>(((struct FilterThreadArgs*)threadArgs)->user); in __threadLoopFilter()
329 self->filterThreadLoop(((struct FilterThreadArgs*)threadArgs)->event); in __threadLoopFilter()
427 static void* __threadLoopPlayback(void* threadArgs);
428 static void* __threadLoopRecord(void* threadArgs);
[all …]