Home
last modified time | relevance | path

Searched refs:threadArgs (Results 1 – 8 of 8) 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/
DDvrTests.cpp137 struct RecordThreadArgs* threadArgs = in startRecordOutputThread() local
139 threadArgs->user = this; in startRecordOutputThread()
140 threadArgs->recordSettings = &recordSettings; in startRecordOutputThread()
141 threadArgs->keepReadingRecordFMQ = &mKeepReadingRecordFMQ; in startRecordOutputThread()
143 pthread_create(&mRecordThread, NULL, __threadLoopRecord, (void*)threadArgs); in startRecordOutputThread()
147 void* DvrCallback::__threadLoopRecord(void* threadArgs) { in __threadLoopRecord() argument
149 static_cast<DvrCallback*>(((struct RecordThreadArgs*)threadArgs)->user); in __threadLoopRecord()
150 self->recordThreadLoop(((struct RecordThreadArgs*)threadArgs)->recordSettings, in __threadLoopRecord()
151 ((struct RecordThreadArgs*)threadArgs)->keepReadingRecordFMQ); in __threadLoopRecord()
DFilterTests.cpp20 struct FilterThreadArgs* threadArgs = in startFilterEventThread() local
22 threadArgs->user = this; in startFilterEventThread()
23 threadArgs->event = event; in startFilterEventThread()
25 pthread_create(&mFilterThread, NULL, __threadLoopFilter, (void*)threadArgs); in startFilterEventThread()
52 void* FilterCallback::__threadLoopFilter(void* threadArgs) { in __threadLoopFilter() argument
54 static_cast<FilterCallback*>(((struct FilterThreadArgs*)threadArgs)->user); in __threadLoopFilter()
55 self->filterThreadLoop(((struct FilterThreadArgs*)threadArgs)->event); in __threadLoopFilter()
DDvrTests.h108 static void* __threadLoopRecord(void* threadArgs);
DFilterTests.h99 static void* __threadLoopFilter(void* threadArgs);
/hardware/interfaces/tv/tuner/1.1/vts/functional/
DDvrTests.cpp136 struct RecordThreadArgs* threadArgs = in startRecordOutputThread() local
138 threadArgs->user = this; in startRecordOutputThread()
139 threadArgs->recordSettings = &recordSettings; in startRecordOutputThread()
140 threadArgs->keepReadingRecordFMQ = &mKeepReadingRecordFMQ; in startRecordOutputThread()
142 pthread_create(&mRecordThread, NULL, __threadLoopRecord, (void*)threadArgs); in startRecordOutputThread()
146 void* DvrCallback::__threadLoopRecord(void* threadArgs) { in __threadLoopRecord() argument
148 static_cast<DvrCallback*>(((struct RecordThreadArgs*)threadArgs)->user); in __threadLoopRecord()
149 self->recordThreadLoop(((struct RecordThreadArgs*)threadArgs)->recordSettings, in __threadLoopRecord()
150 ((struct RecordThreadArgs*)threadArgs)->keepReadingRecordFMQ); in __threadLoopRecord()
DDvrTests.h109 static void* __threadLoopRecord(void* threadArgs);
/hardware/interfaces/tv/tuner/aidl/vts/functional/
DDvrTests.h97 static void* __threadLoopRecord(void* threadArgs);