Home
last modified time | relevance | path

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

/aosp_15_r20/external/cronet/third_party/apache-portable-runtime/src/include/arch/beos/
H A Dapr_arch_thread_rwlock.h28 struct apr_thread_rwlock_t { struct
29 apr_pool_t *pool;
32 sem_id Lock;
33 int32 LockCount;
35 sem_id Read;
36 int32 ReadCount;
37 sem_id Write;
38 int32 WriteCount;
39 int32 Nested;
41 thread_id writer;
/aosp_15_r20/external/cronet/third_party/apache-portable-runtime/src/include/arch/unix/
H A Dapr_arch_thread_rwlock.h34 struct apr_thread_rwlock_t { struct
41 struct apr_thread_rwlock_t { struct
42 apr_pool_t *pool;
/aosp_15_r20/external/cronet/third_party/apache-portable-runtime/src/include/arch/os2/
H A Dapr_arch_thread_rwlock.h23 struct apr_thread_rwlock_t { struct
24 apr_pool_t *pool;
25 int readers;
26 HMTX write_lock;
27 HEV read_done;
/aosp_15_r20/external/cronet/third_party/apache-portable-runtime/src/include/arch/win32/
H A Dapr_arch_thread_rwlock.h22 struct apr_thread_rwlock_t { struct
23 apr_pool_t *pool;
24 HANDLE write_mutex;
25 HANDLE read_event;
26 LONG readers;
/aosp_15_r20/external/cronet/third_party/apache-portable-runtime/src/include/arch/netware/
H A Dapr_arch_thread_rwlock.h23 struct apr_thread_rwlock_t { struct
24 apr_pool_t *pool;
25 NXRwLock_t *rwlock;
/aosp_15_r20/external/cronet/third_party/apache-portable-runtime/src/include/
H A Dapr_thread_rwlock.h42 typedef struct apr_thread_rwlock_t apr_thread_rwlock_t; typedef