Home
last modified time | relevance | path

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

/aosp_15_r20/external/cronet/third_party/apache-portable-runtime/src/include/arch/netware/
H A Dapr_arch_threadproc.h29 struct apr_thread_t { struct
30 apr_pool_t *pool;
31 NXContext_t ctx;
32 NXThreadId_t td;
33 char *thread_name;
34 apr_int32_t cancel;
35 apr_int32_t cancel_how;
36 void *data;
37 apr_thread_start_t func;
38 apr_status_t exitval;
/aosp_15_r20/external/cronet/third_party/apache-portable-runtime/src/include/arch/win32/
H A Dapr_arch_threadproc.h26 struct apr_thread_t { struct
27 apr_pool_t *pool;
28 HANDLE td;
29 apr_int32_t cancel;
30 apr_int32_t cancel_how;
31 void *data;
32 apr_thread_start_t func;
33 apr_status_t exitval;
/aosp_15_r20/external/cronet/third_party/apache-portable-runtime/src/include/arch/os2/
H A Dapr_arch_threadproc.h34 struct apr_thread_t { struct
35 apr_pool_t *pool;
36 struct apr_threadattr_t *attr;
37 unsigned long tid;
38 apr_thread_start_t func;
39 void *data;
40 apr_status_t exitval;
/aosp_15_r20/external/cronet/third_party/apache-portable-runtime/src/include/arch/unix/
H A Dapr_arch_threadproc.h55 struct apr_thread_t { struct
56 apr_pool_t *pool;
57 pthread_t *td;
58 void *data;
59 apr_thread_start_t func;
60 apr_status_t exitval;
/aosp_15_r20/external/cronet/third_party/apache-portable-runtime/src/include/arch/beos/
H A Dapr_arch_threadproc.h42 struct apr_thread_t { struct
43 apr_pool_t *pool;
44 thread_id td;
45 void *data;
46 apr_thread_start_t func;
47 apr_status_t exitval;
/aosp_15_r20/external/cronet/third_party/apache-portable-runtime/src/include/
H A Dapr_thread_proc.h177 typedef struct apr_thread_t apr_thread_t; typedef