Home
last modified time | relevance | path

Searched defs:apr_thread_cond_t (Results 1 – 6 of 6) sorted by relevance

/aosp_15_r20/external/cronet/third_party/apache-portable-runtime/src/include/arch/win32/
H A Dapr_arch_thread_cond.h22 struct apr_thread_cond_t { struct
23 apr_pool_t *pool;
24 HANDLE semaphore;
25 CRITICAL_SECTION csection;
26 unsigned long num_waiting;
27 unsigned long num_wake;
28 unsigned long generation;
/aosp_15_r20/external/cronet/third_party/apache-portable-runtime/src/include/arch/beos/
H A Dapr_arch_thread_cond.h34 struct apr_thread_cond_t { struct
35 apr_pool_t *pool;
36 sem_id lock;
37 apr_thread_mutex_t *condlock;
38 thread_id owner;
/aosp_15_r20/external/cronet/third_party/apache-portable-runtime/src/include/arch/netware/
H A Dapr_arch_thread_cond.h23 struct apr_thread_cond_t { struct
24 apr_pool_t *pool;
25 NXCond_t *cond;
/aosp_15_r20/external/cronet/third_party/apache-portable-runtime/src/include/arch/unix/
H A Dapr_arch_thread_cond.h35 struct apr_thread_cond_t { struct
36 apr_pool_t *pool;
37 pthread_cond_t cond;
/aosp_15_r20/external/cronet/third_party/apache-portable-runtime/src/include/arch/os2/
H A Dapr_arch_thread_cond.h23 struct apr_thread_cond_t { struct
24 apr_pool_t *pool;
/aosp_15_r20/external/cronet/third_party/apache-portable-runtime/src/include/
H A Dapr_thread_cond.h44 typedef struct apr_thread_cond_t apr_thread_cond_t; typedef