Home
last modified time | relevance | path

Searched refs:apr_shm_t (Results 1 – 22 of 22) sorted by relevance

/external/cronet/tot/third_party/apache-portable-runtime/src/shmem/os2/
Dshm.c24 struct apr_shm_t { struct
29 APR_DECLARE(apr_status_t) apr_shm_create(apr_shm_t **m, in apr_shm_create() argument
35 apr_shm_t *newm = (apr_shm_t *)apr_palloc(pool, sizeof(apr_shm_t)); in apr_shm_create()
59 APR_DECLARE(apr_status_t) apr_shm_create_ex(apr_shm_t **m, in apr_shm_create_ex()
68 APR_DECLARE(apr_status_t) apr_shm_destroy(apr_shm_t *m) in apr_shm_destroy()
80 APR_DECLARE(apr_status_t) apr_shm_attach(apr_shm_t **m, in apr_shm_attach()
85 apr_shm_t *newm = (apr_shm_t *)apr_palloc(pool, sizeof(apr_shm_t)); in apr_shm_attach()
102 APR_DECLARE(apr_status_t) apr_shm_attach_ex(apr_shm_t **m, in apr_shm_attach_ex()
110 APR_DECLARE(apr_status_t) apr_shm_detach(apr_shm_t *m) in apr_shm_detach()
121 APR_DECLARE(void *) apr_shm_baseaddr_get(const apr_shm_t *m) in apr_shm_baseaddr_get()
[all …]
/external/cronet/stable/third_party/apache-portable-runtime/src/shmem/os2/
Dshm.c24 struct apr_shm_t { struct
29 APR_DECLARE(apr_status_t) apr_shm_create(apr_shm_t **m, in apr_shm_create() argument
35 apr_shm_t *newm = (apr_shm_t *)apr_palloc(pool, sizeof(apr_shm_t)); in apr_shm_create()
59 APR_DECLARE(apr_status_t) apr_shm_create_ex(apr_shm_t **m, in apr_shm_create_ex()
68 APR_DECLARE(apr_status_t) apr_shm_destroy(apr_shm_t *m) in apr_shm_destroy()
80 APR_DECLARE(apr_status_t) apr_shm_attach(apr_shm_t **m, in apr_shm_attach()
85 apr_shm_t *newm = (apr_shm_t *)apr_palloc(pool, sizeof(apr_shm_t)); in apr_shm_attach()
102 APR_DECLARE(apr_status_t) apr_shm_attach_ex(apr_shm_t **m, in apr_shm_attach_ex()
110 APR_DECLARE(apr_status_t) apr_shm_detach(apr_shm_t *m) in apr_shm_detach()
121 APR_DECLARE(void *) apr_shm_baseaddr_get(const apr_shm_t *m) in apr_shm_baseaddr_get()
[all …]
/external/cronet/tot/third_party/apache-portable-runtime/src/include/
Dapr_shm.h43 typedef struct apr_shm_t apr_shm_t; typedef
69 APR_DECLARE(apr_status_t) apr_shm_create(apr_shm_t **m,
114 APR_DECLARE(apr_status_t) apr_shm_create_ex(apr_shm_t **m,
142 APR_DECLARE(apr_status_t) apr_shm_destroy(apr_shm_t *m);
153 APR_DECLARE(apr_status_t) apr_shm_attach(apr_shm_t **m,
167 APR_DECLARE(apr_status_t) apr_shm_attach_ex(apr_shm_t **m,
177 APR_DECLARE(apr_status_t) apr_shm_detach(apr_shm_t *m);
188 APR_DECLARE(void *) apr_shm_baseaddr_get(const apr_shm_t *m);
195 APR_DECLARE(apr_size_t) apr_shm_size_get(const apr_shm_t *m);
Dapr_portable.h273 apr_shm_t *shm);
447 APR_DECLARE(apr_status_t) apr_os_shm_put(apr_shm_t **shm,
/external/cronet/stable/third_party/apache-portable-runtime/src/include/
Dapr_shm.h43 typedef struct apr_shm_t apr_shm_t; typedef
69 APR_DECLARE(apr_status_t) apr_shm_create(apr_shm_t **m,
114 APR_DECLARE(apr_status_t) apr_shm_create_ex(apr_shm_t **m,
142 APR_DECLARE(apr_status_t) apr_shm_destroy(apr_shm_t *m);
153 APR_DECLARE(apr_status_t) apr_shm_attach(apr_shm_t **m,
167 APR_DECLARE(apr_status_t) apr_shm_attach_ex(apr_shm_t **m,
177 APR_DECLARE(apr_status_t) apr_shm_detach(apr_shm_t *m);
188 APR_DECLARE(void *) apr_shm_baseaddr_get(const apr_shm_t *m);
195 APR_DECLARE(apr_size_t) apr_shm_size_get(const apr_shm_t *m);
Dapr_portable.h273 apr_shm_t *shm);
447 APR_DECLARE(apr_status_t) apr_os_shm_put(apr_shm_t **shm,
/external/cronet/stable/third_party/apache-portable-runtime/src/shmem/beos/
Dshm.c27 struct apr_shm_t { struct
36 APR_DECLARE(apr_status_t) apr_shm_create(apr_shm_t **m, in apr_shm_create() argument
46 (*m) = (apr_shm_t *)apr_pcalloc(p, sizeof(apr_shm_t)); in apr_shm_create()
74 APR_DECLARE(apr_status_t) apr_shm_create_ex(apr_shm_t **m, in apr_shm_create_ex()
83 APR_DECLARE(apr_status_t) apr_shm_destroy(apr_shm_t *m) in apr_shm_destroy()
103 APR_DECLARE(apr_status_t) apr_shm_attach(apr_shm_t **m, in apr_shm_attach()
109 apr_shm_t *new_m; in apr_shm_attach()
115 new_m = (apr_shm_t*)apr_palloc(pool, sizeof(apr_shm_t*)); in apr_shm_attach()
145 APR_DECLARE(apr_status_t) apr_shm_attach_ex(apr_shm_t **m, in apr_shm_attach_ex()
153 APR_DECLARE(apr_status_t) apr_shm_detach(apr_shm_t *m) in apr_shm_detach()
[all …]
/external/cronet/tot/third_party/apache-portable-runtime/src/shmem/beos/
Dshm.c27 struct apr_shm_t { struct
36 APR_DECLARE(apr_status_t) apr_shm_create(apr_shm_t **m, in apr_shm_create() argument
46 (*m) = (apr_shm_t *)apr_pcalloc(p, sizeof(apr_shm_t)); in apr_shm_create()
74 APR_DECLARE(apr_status_t) apr_shm_create_ex(apr_shm_t **m, in apr_shm_create_ex()
83 APR_DECLARE(apr_status_t) apr_shm_destroy(apr_shm_t *m) in apr_shm_destroy()
103 APR_DECLARE(apr_status_t) apr_shm_attach(apr_shm_t **m, in apr_shm_attach()
109 apr_shm_t *new_m; in apr_shm_attach()
115 new_m = (apr_shm_t*)apr_palloc(pool, sizeof(apr_shm_t*)); in apr_shm_attach()
145 APR_DECLARE(apr_status_t) apr_shm_attach_ex(apr_shm_t **m, in apr_shm_attach_ex()
153 APR_DECLARE(apr_status_t) apr_shm_detach(apr_shm_t *m) in apr_shm_detach()
[all …]
/external/cronet/tot/third_party/apache-portable-runtime/src/shmem/win32/
Dshm.c30 struct apr_shm_t { struct
43 apr_shm_t *m = shm; in shm_cleanup() argument
117 APR_DECLARE(apr_status_t) apr_shm_create_ex(apr_shm_t **m, in apr_shm_create_ex()
225 *m = (apr_shm_t *) apr_palloc(pool, sizeof(apr_shm_t)); in apr_shm_create_ex()
243 APR_DECLARE(apr_status_t) apr_shm_create(apr_shm_t **m, in apr_shm_create()
251 APR_DECLARE(apr_status_t) apr_shm_destroy(apr_shm_t *m) in apr_shm_destroy()
264 static apr_status_t shm_attach_internal(apr_shm_t **m, in shm_attach_internal()
289 PAGE_READWRITE, 0, sizeof(apr_shm_t), mapkey); in shm_attach_internal()
310 *m = (apr_shm_t *) apr_palloc(pool, sizeof(apr_shm_t)); in shm_attach_internal()
341 APR_DECLARE(apr_status_t) apr_shm_attach_ex(apr_shm_t **m, in apr_shm_attach_ex()
[all …]
/external/cronet/stable/third_party/apache-portable-runtime/src/shmem/win32/
Dshm.c30 struct apr_shm_t { struct
43 apr_shm_t *m = shm; in shm_cleanup() argument
117 APR_DECLARE(apr_status_t) apr_shm_create_ex(apr_shm_t **m, in apr_shm_create_ex()
225 *m = (apr_shm_t *) apr_palloc(pool, sizeof(apr_shm_t)); in apr_shm_create_ex()
243 APR_DECLARE(apr_status_t) apr_shm_create(apr_shm_t **m, in apr_shm_create()
251 APR_DECLARE(apr_status_t) apr_shm_destroy(apr_shm_t *m) in apr_shm_destroy()
264 static apr_status_t shm_attach_internal(apr_shm_t **m, in shm_attach_internal()
289 PAGE_READWRITE, 0, sizeof(apr_shm_t), mapkey); in shm_attach_internal()
310 *m = (apr_shm_t *) apr_palloc(pool, sizeof(apr_shm_t)); in shm_attach_internal()
341 APR_DECLARE(apr_status_t) apr_shm_attach_ex(apr_shm_t **m, in apr_shm_attach_ex()
[all …]
/external/cronet/tot/third_party/apache-portable-runtime/src/shmem/unix/
Dshm.c82 apr_shm_t *m = (apr_shm_t *)m_; in shm_cleanup_owner()
143 APR_DECLARE(apr_status_t) apr_shm_create(apr_shm_t **m, in apr_shm_create()
148 apr_shm_t *new_m; in apr_shm_create()
171 new_m = apr_palloc(pool, sizeof(apr_shm_t)); in apr_shm_create()
229 new_m = apr_palloc(pool, sizeof(apr_shm_t)); in apr_shm_create()
275 new_m = apr_palloc(pool, sizeof(apr_shm_t)); in apr_shm_create()
427 APR_DECLARE(apr_status_t) apr_shm_create_ex(apr_shm_t **m, in apr_shm_create_ex()
495 APR_DECLARE(apr_status_t) apr_shm_destroy(apr_shm_t *m) in apr_shm_destroy()
502 apr_shm_t *m = (apr_shm_t *)m_; in shm_cleanup_attach()
525 APR_DECLARE(apr_status_t) apr_shm_attach(apr_shm_t **m, in apr_shm_attach()
[all …]
/external/cronet/stable/third_party/apache-portable-runtime/src/shmem/unix/
Dshm.c82 apr_shm_t *m = (apr_shm_t *)m_; in shm_cleanup_owner()
143 APR_DECLARE(apr_status_t) apr_shm_create(apr_shm_t **m, in apr_shm_create()
148 apr_shm_t *new_m; in apr_shm_create()
171 new_m = apr_palloc(pool, sizeof(apr_shm_t)); in apr_shm_create()
229 new_m = apr_palloc(pool, sizeof(apr_shm_t)); in apr_shm_create()
275 new_m = apr_palloc(pool, sizeof(apr_shm_t)); in apr_shm_create()
427 APR_DECLARE(apr_status_t) apr_shm_create_ex(apr_shm_t **m, in apr_shm_create_ex()
495 APR_DECLARE(apr_status_t) apr_shm_destroy(apr_shm_t *m) in apr_shm_destroy()
502 apr_shm_t *m = (apr_shm_t *)m_; in shm_cleanup_attach()
525 APR_DECLARE(apr_status_t) apr_shm_attach(apr_shm_t **m, in apr_shm_attach()
[all …]
/external/cronet/stable/third_party/apache-portable-runtime/src/test/
Dtestshm.c67 apr_shm_t *shm = NULL; in test_anon_create()
80 apr_shm_t *shm = NULL; in test_check_size()
97 apr_shm_t *shm = NULL; in test_shm_allocate()
115 apr_shm_t *shm; in test_anon()
164 apr_shm_t *shm = NULL; in test_named()
234 apr_shm_t *shm, *shm2; in test_named_remove()
Dtestshmproducer.c42 apr_shm_t *shm; in main()
Dtestshmconsumer.c56 apr_shm_t *shm; in main()
Dtestprocmutex.c158 apr_shm_t *shm; in proc_mutex()
/external/cronet/tot/third_party/apache-portable-runtime/src/test/
Dtestshm.c67 apr_shm_t *shm = NULL; in test_anon_create()
80 apr_shm_t *shm = NULL; in test_check_size()
97 apr_shm_t *shm = NULL; in test_shm_allocate()
115 apr_shm_t *shm; in test_anon()
164 apr_shm_t *shm = NULL; in test_named()
234 apr_shm_t *shm, *shm2; in test_named_remove()
Dtestshmproducer.c42 apr_shm_t *shm; in main()
Dtestshmconsumer.c56 apr_shm_t *shm; in main()
Dtestprocmutex.c158 apr_shm_t *shm; in proc_mutex()
/external/cronet/tot/third_party/apache-portable-runtime/src/include/arch/unix/
Dapr_arch_shm.h61 struct apr_shm_t { struct
/external/cronet/stable/third_party/apache-portable-runtime/src/include/arch/unix/
Dapr_arch_shm.h61 struct apr_shm_t { struct