Searched defs:thread (Results 1 - 25 of 25) sorted by relevance

/hardware/qcom/gps/msm8960/loc_api/libloc_api_50001/
H A Dloc_eng_ni.h39 pthread_t thread; /* NI thread */ member in struct:__anon4299
/hardware/qcom/gps/loc_api/libloc_api_50001/
H A Dloc_eng_ni.h41 pthread_t thread; /* NI thread */ member in struct:__anon4129
/hardware/qcom/gps/msm8084/loc_api/libloc_api_50001/
H A Dloc_eng_ni.h41 pthread_t thread; /* NI thread */ member in struct:__anon4215
/hardware/qcom/gps/msm8909/loc_api/libloc_api_50001/
H A Dloc_eng_ni.h41 pthread_t thread; /* NI thread */ member in struct:__anon4272
/hardware/qcom/gps/msm8909/utils/
H A DMsgTask.cpp66 LocThread* thread = mThread; local
68 if (thread) {
70 delete thread;
H A DLocThread.cpp47 // bye() is for the parent thread to go away. if joinable,
48 // parent must stop the spawned thread, join, and then
59 // once the thread is created, some of these values will
60 // be check in the spawned thread, and must set correctly
70 // set up thread name, if nothing is passed in
75 // create the thread here, then if successful
76 // and a name is given, we set the thread name
85 // set thread name
90 // set the thread name here
113 LocThreadDelegate* thread local
252 LocThread thread; local
[all...]
H A DLocTimer.cpp90 // * provides a polling thread;
91 // * provides a MsgTask thread for synchronized add / remove / timer client callback.
130 // This class implements the polling thread that epolls imer / alarm fds.
132 // will be run in the caller's thread context to add / remove timer / alarm
144 // the thread that calls run() method
152 // this obj will be deleted once thread is deleted
165 // The polling thread context will call this method. This is where
400 // before a next call returens, a thread will be created. The run() method
402 // creates a thread, the container will make sure that there will be only
413 // and the spawned thread shoul
419 LocThread* thread = mThread; local
[all...]
/hardware/qcom/gps/msm8994/loc_api/libloc_api_50001/
H A Dloc_eng_ni.h41 pthread_t thread; /* NI thread */ member in struct:__anon4391
/hardware/qcom/gps/msm8996/loc_api/libloc_api_50001/
H A Dloc_eng_ni.h41 pthread_t thread; /* NI thread */ member in struct:__anon4448
/hardware/qcom/gps/msm8996/utils/
H A DMsgTask.cpp66 LocThread* thread = mThread; local
68 if (thread) {
70 delete thread;
H A DLocThread.cpp47 // bye() is for the parent thread to go away. if joinable,
48 // parent must stop the spawned thread, join, and then
59 // once the thread is created, some of these values will
60 // be check in the spawned thread, and must set correctly
70 // set up thread name, if nothing is passed in
75 // create the thread here, then if successful
76 // and a name is given, we set the thread name
85 // set thread name
90 // set the thread name here
113 LocThreadDelegate* thread local
252 LocThread thread; local
[all...]
H A DLocTimer.cpp90 // * provides a polling thread;
91 // * provides a MsgTask thread for synchronized add / remove / timer client callback.
130 // This class implements the polling thread that epolls imer / alarm fds.
132 // will be run in the caller's thread context to add / remove timer / alarm
144 // the thread that calls run() method
152 // this obj will be deleted once thread is deleted
165 // The polling thread context will call this method. This is where
398 // before a next call returens, a thread will be created. The run() method
400 // creates a thread, the container will make sure that there will be only
411 // and the spawned thread shoul
417 LocThread* thread = mThread; local
[all...]
/hardware/qcom/gps/msm8998/loc_api/libloc_api_50001/
H A Dloc_eng_ni.h41 pthread_t thread; /* NI thread */ member in struct:__anon4527
/hardware/qcom/gps/msm8998/utils/
H A DMsgTask.cpp65 LocThread* thread = mThread; local
67 if (thread) {
69 delete thread;
H A DLocThread.cpp48 // bye() is for the parent thread to go away. if joinable,
49 // parent must stop the spawned thread, join, and then
60 // once the thread is created, some of these values will
61 // be check in the spawned thread, and must set correctly
71 // set up thread name, if nothing is passed in
76 // create the thread here, then if successful
77 // and a name is given, we set the thread name
86 // set thread name
92 // set the thread name here
115 LocThreadDelegate* thread local
254 LocThread thread; local
[all...]
H A DLocTimer.cpp90 // * provides a polling thread;
91 // * provides a MsgTask thread for synchronized add / remove / timer client callback.
130 // This class implements the polling thread that epolls imer / alarm fds.
132 // will be run in the caller's thread context to add / remove timer / alarm
144 // the thread that calls run() method
152 // this obj will be deleted once thread is deleted
165 // The polling thread context will call this method. This is where
398 // before a next call returens, a thread will be created. The run() method
400 // creates a thread, the container will make sure that there will be only
411 // and the spawned thread shoul
417 LocThread* thread = mThread; local
[all...]
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/decoder/
H A Dvp9_thread.h14 // 100644 blob 13a61a4c84194c3374080cbf03d881d3cd6af40d src/utils/thread.h
47 static INLINE int pthread_create(pthread_t* const thread, const void* attr, argument
51 *thread = (pthread_t)_beginthreadex(NULL, /* void *security */
57 if (*thread == NULL) return 1;
58 SetThreadPriority(*thread, THREAD_PRIORITY_ABOVE_NORMAL);
62 static INLINE int pthread_join(pthread_t thread, void** value_ptr) { argument
64 return (WaitForSingleObject(thread, INFINITE) != WAIT_OBJECT_0 ||
65 CloseHandle(thread) == 0);
122 // a thread is waiting in pthread_cond_wait: allow it to be notified
155 // State of the worker thread objec
[all...]
/hardware/libhardware/modules/vehicle/
H A Dvehicle.c53 // Each subscription has it's own thread.
62 pthread_t thread; member in struct:subscription
320 // This should be run in a separate thread always.
477 //TODO notify this to fake sensor thread
483 &sub->thread, NULL, (void *(*)(void*))fake_event_thread, sub);
509 pthread_join(sub->thread, NULL);
/hardware/qcom/camera/msm8998/QCamera2/HAL3/test/
H A DQCameraHAL3RawSnapshotTest.cpp51 LOGD("\n Raw buffer thread created for testcase : %d", testcase);
177 buffer_thread_t thread; local
184 pthread_mutex_init(&thread.mutex, NULL);
185 pthread_cond_init(&thread.cond, NULL);
186 thread.is_thread_started = 0;
187 thread.readfd = pfd[0];
188 thread.writefd = pfd[1];
189 thread.data_obj = this;
190 ret = pthread_create(&thread.td, &attr, hal3_thread_ops, &thread );
213 buffer_thread_t *thread = (buffer_thread_t*)data; local
[all...]
H A DQCameraHAL3SnapshotTest.cpp174 buffer_thread_t thread; local
181 pthread_mutex_init(&thread.mutex, NULL);
182 pthread_cond_init(&thread.cond, NULL);
183 thread.is_thread_started = 0;
184 thread.readfd = pfd[0];
185 thread.writefd = pfd[1];
186 thread.data_obj = this;
187 ret = pthread_create(&thread.td, &attr, hal3_thread_ops, &thread );
188 pthread_setname_np(thread
203 buffer_thread_t *thread = (buffer_thread_t*)data; local
[all...]
H A DQCameraHAL3Test.cpp38 buffer_thread_t thread; member in namespace:qcamera
158 pthread_mutex_init(&thread.mutex, NULL);
159 pthread_cond_init(&thread.cond, NULL);
161 thread.is_thread_started = 0;
162 thread.readfd = pfd[0];
163 thread.writefd = pfd[1];
164 thread.data_obj = obj;
165 thread.testcase = testcase;
166 pthread_mutex_lock(&thread.mutex);
167 ret = pthread_create(&thread
178 buffer_thread_t *thread = (buffer_thread_t*)data; local
[all...]
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/decoder/
H A Ddecodeframe.c1341 unsigned int thread; local
1344 for (thread = 0; thread < pbi->decoding_thread_count; ++thread)
1345 corrupt_tokens |= pbi->mb_row_di[thread].mbd.corrupted;
/hardware/qcom/camera/msm8998/usbcamcore/src/
H A DQCameraMjpegDecode.cpp49 // Abstract the return type of the function to be run as a thread
52 // Abstract the argument type to the thread function
55 // Helpful constants for return values in the thread functions
59 // Abstract the function modifier placed in the beginning of the thread
103 pthread_t thread; member in struct:__anon3533
202 // Create thread control blocks
206 ALOGE("%s: decoder_test failed: insufficient memory in creating thread control blocks", __func__);
563 // main thread to clean up
/hardware/qcom/camera/usbcamcore/src/
H A DQCameraMjpegDecode.cpp49 // Abstract the return type of the function to be run as a thread
52 // Abstract the argument type to the thread function
55 // Helpful constants for return values in the thread functions
59 // Abstract the function modifier placed in the beginning of the thread
103 pthread_t thread; member in struct:__anon3537
202 // Create thread control blocks
206 ALOGE("%s: decoder_test failed: insufficient memory in creating thread control blocks", __func__);
563 // main thread to clean up
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/third_party/googletest/src/include/gtest/
H A Dgtest.h245 // and Google Test is thread-safe; or 0 otherwise.
2303 // Allows a controller thread to pause execution of newly created
2305 // and destroyed in the controller thread.
2319 // be called from the controller thread.
2326 // Blocks until the controller thread notifies. Must be called from a test
2327 // thread.
2363 extern "C" inline void* ThreadFuncWithCLinkage(void* thread) { argument
2364 static_cast<ThreadWithParamBase*>(thread)->Run();
2375 // ThreadWithParam<int> thread(&ThreadFunc, 5, &thread_can_start);
2392 // The thread ca
[all...]

Completed in 239 milliseconds