OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:pCond
(Results
1 - 3
of
3
) sorted by null
/hardware/intel/common/libwsbm/src/
wsbm_driver.c
182
struct _WsbmPCond *
pCond
= pCondConvert(cond);
187
pCond
->func = func;
188
pthread_cond_init(&
pCond
->cond, NULL);
195
struct _WsbmPCond *
pCond
= pCondConvert(cond);
197
pthread_cond_destroy(&
pCond
->cond);
203
struct _WsbmPCond *
pCond
= pCondConvert(cond);
205
pthread_cond_broadcast(&
pCond
->cond);
211
struct _WsbmPCond *
pCond
= pCondConvert(cond);
214
pthread_cond_wait(&
pCond
->cond, &pMutex->mutex);
/system/nfc/halimpl/bcm2079x/gki/ulinux/
gki_ulinux.c
83
pthread_cond_t*
pCond
; /* for android*/
102
GKI_TRACE_5("gki_task_entry task_id=%i, thread_id=%x/%x,
pCond
/pMutex=%x/%x",
105
p_pthread_info->
pCond
, p_pthread_info->pMutex);
250
GKI_TRACE_3("GKI creating task %i,
pCond
/pMutex=%x/%x", task_id, pCondVar,
263
gki_pthread_info[task_id].
pCond
= (pthread_cond_t*)pCondVar;
627
if (p_pthread_info->
pCond
!= NULL && p_pthread_info->pMutex != NULL) {
629
GKI_TRACE_3("GKI_wait task=%i,
pCond
/pMutex = %x/%x", rtask,
630
p_pthread_info->
pCond
, p_pthread_info->pMutex);
632
ret = pthread_cond_signal(p_pthread_info->
pCond
);
635
p_pthread_info->
pCond
= NULL
[
all
...]
/system/nfc/src/gki/ulinux/
gki_ulinux.c
83
pthread_cond_t*
pCond
; /* for android*/
100
GKI_TRACE_5("gki_task_entry task_id=%i, thread_id=%x/%x,
pCond
/pMutex=%x/%x",
103
p_pthread_info->
pCond
, p_pthread_info->pMutex);
248
GKI_TRACE_3("GKI creating task %i,
pCond
/pMutex=%x/%x", task_id, pCondVar,
261
gki_pthread_info[task_id].
pCond
= (pthread_cond_t*)pCondVar;
610
if (p_pthread_info->
pCond
!= NULL && p_pthread_info->pMutex != NULL) {
612
GKI_TRACE_3("GKI_wait task=%i,
pCond
/pMutex = %x/%x", rtask,
613
p_pthread_info->
pCond
, p_pthread_info->pMutex);
615
ret = pthread_cond_signal(p_pthread_info->
pCond
);
618
p_pthread_info->
pCond
= NULL
[
all
...]
Completed in 3723 milliseconds