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

12

/hardware/qcom/gps/msm8960/loc_api/libloc_api_50001/
H A Dloc_eng_ni.h39 pthread_t thread; /* NI thread */ member in struct:__anon3490
H A Dloc_eng_ni.cpp156 /* For robustness, spawn a thread at this point to timeout to clear up the notification status, even though
163 rc = pthread_create(&loc_eng_ni_data_p->thread, NULL, ni_thread_proc, &loc_eng_data);
166 LOC_LOGE("Loc NI thread is not created.\n");
168 rc = pthread_detach(loc_eng_ni_data_p->thread);
171 LOC_LOGE("Loc NI thread is not detached.\n");
196 LOC_LOGD("Starting Loc NI thread...\n");
221 // adding this check to support modem restart, in which case, we need the thread
/hardware/intel/common/wrs_omxil_core/utils/src/
H A Debuild.mk8 thread.cpp \
H A DAndroid.mk8 thread.cpp \
H A Dthread.cpp2 * thread.cpp, thread class
20 #include <thread.h>
/hardware/qcom/gps/loc_api/libloc_api_50001/
H A Dloc_eng_ni.h41 pthread_t thread; /* NI thread */ member in struct:__anon3319
H A Dloc_eng_ni.cpp173 /* For robustness, spawn a thread at this point to timeout to clear up the notification status, even though
180 rc = pthread_create(&pSession->thread, NULL, ni_thread_proc, pSession);
183 LOC_LOGE("Loc NI thread is not created.\n");
185 rc = pthread_detach(pSession->thread);
188 LOC_LOGE("Loc NI thread is not detached.\n");
212 LOC_LOGD("Starting Loc NI thread...\n");
239 // adding this check to support modem restart, in which case, we need the thread
/hardware/qcom/gps/msm8084/loc_api/libloc_api_50001/
H A Dloc_eng_ni.h41 pthread_t thread; /* NI thread */ member in struct:__anon3405
H A Dloc_eng_ni.cpp173 /* For robustness, spawn a thread at this point to timeout to clear up the notification status, even though
180 rc = pthread_create(&pSession->thread, NULL, ni_thread_proc, pSession);
183 LOC_LOGE("Loc NI thread is not created.\n");
185 rc = pthread_detach(pSession->thread);
188 LOC_LOGE("Loc NI thread is not detached.\n");
212 LOC_LOGD("Starting Loc NI thread...\n");
239 // adding this check to support modem restart, in which case, we need the thread
/hardware/qcom/gps/msm8909/loc_api/libloc_api_50001/
H A Dloc_eng_ni.h41 pthread_t thread; /* NI thread */ member in struct:__anon3463
H A Dloc_eng_ni.cpp173 /* For robustness, spawn a thread at this point to timeout to clear up the notification status, even though
180 rc = pthread_create(&pSession->thread, NULL, ni_thread_proc, pSession);
183 LOC_LOGE("Loc NI thread is not created.\n");
185 rc = pthread_detach(pSession->thread);
188 LOC_LOGE("Loc NI thread is not detached.\n");
212 LOC_LOGD("Starting Loc NI thread...\n");
239 // adding this check to support modem restart, in which case, we need the thread
/hardware/qcom/gps/msm8994/loc_api/libloc_api_50001/
H A Dloc_eng_ni.h41 pthread_t thread; /* NI thread */ member in struct:__anon3582
H A Dloc_eng_ni.cpp173 /* For robustness, spawn a thread at this point to timeout to clear up the notification status, even though
180 rc = pthread_create(&pSession->thread, NULL, ni_thread_proc, pSession);
183 LOC_LOGE("Loc NI thread is not created.\n");
185 rc = pthread_detach(pSession->thread);
188 LOC_LOGE("Loc NI thread is not detached.\n");
212 LOC_LOGD("Starting Loc NI thread...\n");
239 // adding this check to support modem restart, in which case, we need the thread
/hardware/qcom/gps/msm8996/loc_api/libloc_api_50001/
H A Dloc_eng_ni.h41 pthread_t thread; /* NI thread */ member in struct:__anon3640
/hardware/qcom/gps/msm8909/utils/
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 DMsgTask.cpp68 LocThread* thread = mThread; local
70 delete thread;
/hardware/qcom/gps/msm8996/utils/
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 DMsgTask.cpp68 LocThread* thread = mThread; local
70 delete thread;
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/common/
H A Dthreading.h32 #define pthread_join(thread, result) ((WaitForSingleObject((thread),INFINITE)!=WAIT_OBJECT_0) || !CloseHandle(thread))
33 #define pthread_detach(thread) if(thread!=NULL)CloseHandle(thread)
35 #define pthread_cancel(thread) terminate_thread(thread,0)
54 #define pthread_join(thread, result) ((int)DosWaitThread(&(thread),
[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/input/evdev/
H A DEvdevModule.cpp22 #include <thread>
52 std::thread mPollThread;
66 mPollThread = std::thread(&EvdevModule::loop, this);
72 // notifyReport() will be called from an arbitrary thread within the input
77 // * In the main loop thread, after returning from poll(), the queue will
/hardware/intel/common/wrs_omxil_core/utils/inc/
H A Dworkqueue.h25 #include <thread.h>
45 /* start & stop & pause & resume work thread */
/hardware/libhardware/tests/input/evdev/
H A DTestHelpers.h21 #include <thread>
/hardware/qcom/display/msm8996/sdm/include/utils/
H A Dsys.h47 typedef int (*pthread_cancel)(pthread_t thread);
/hardware/intel/common/wrs_omxil_core/
H A DAndroid.mk30 utils/inc/thread.h \

Completed in 520 milliseconds

12