Searched refs:threadArgs (Results 1 – 2 of 2) sorted by relevance
20 ThreadFuncArgs* threadArgs = reinterpret_cast<ThreadFuncArgs*>(arg); in threadFunc() local21 threadArgs->fptr(threadArgs->args); in threadFunc()29 auto threadArgs = new ThreadFuncArgs(start, arg); in createPthread() local30 auto argPtr = std::unique_ptr<ThreadFuncArgs>(threadArgs); in createPthread()35 threadArgs)); in createPthread()
260 static void* __threadLoopFilter(void* threadArgs);294 struct FilterThreadArgs* threadArgs = in startFilterEventThread() local296 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() argument328 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 …]