Home
last modified time | relevance | path

Searched refs:ngx_pool_t (Results 1 – 25 of 65) sorted by relevance

123

/f-stack/app/nginx-1.16.1/src/core/
H A Dngx_palloc.h52 ngx_pool_t *next;
60 ngx_pool_t *current;
75 ngx_pool_t *ngx_create_pool(size_t size, ngx_log_t *log);
76 void ngx_destroy_pool(ngx_pool_t *pool);
77 void ngx_reset_pool(ngx_pool_t *pool);
79 void *ngx_palloc(ngx_pool_t *pool, size_t size);
80 void *ngx_pnalloc(ngx_pool_t *pool, size_t size);
81 void *ngx_pcalloc(ngx_pool_t *pool, size_t size);
82 void *ngx_pmemalign(ngx_pool_t *pool, size_t size, size_t alignment);
83 ngx_int_t ngx_pfree(ngx_pool_t *pool, void *p);
[all …]
H A Dngx_palloc.c18 ngx_pool_t *
21 ngx_pool_t *p; in ngx_create_pool()
33 size = size - sizeof(ngx_pool_t); in ngx_create_pool()
47 ngx_destroy_pool(ngx_pool_t *pool) in ngx_destroy_pool()
49 ngx_pool_t *p, *n; in ngx_destroy_pool()
100 ngx_reset_pool(ngx_pool_t *pool) in ngx_reset_pool()
102 ngx_pool_t *p; in ngx_reset_pool()
152 ngx_pool_t *p; in ngx_palloc_small()
182 ngx_pool_t *p, *new; in ngx_palloc_block()
191 new = (ngx_pool_t *) m; in ngx_palloc_block()
[all …]
H A Dngx_buf.h106 ngx_pool_t *pool;
120 ngx_pool_t *pool;
143 ngx_buf_t *ngx_create_temp_buf(ngx_pool_t *pool, size_t size);
144 ngx_chain_t *ngx_create_chain_of_bufs(ngx_pool_t *pool, ngx_bufs_t *bufs);
150 ngx_chain_t *ngx_alloc_chain_link(ngx_pool_t *pool);
160 ngx_int_t ngx_chain_add_copy(ngx_pool_t *pool, ngx_chain_t **chain,
162 ngx_chain_t *ngx_chain_get_free_buf(ngx_pool_t *p, ngx_chain_t **free);
163 void ngx_chain_update_chains(ngx_pool_t *p, ngx_chain_t **free,
H A Dngx_crypt.c16 static ngx_int_t ngx_crypt_apr1(ngx_pool_t *pool, u_char *key, u_char *salt,
18 static ngx_int_t ngx_crypt_plain(ngx_pool_t *pool, u_char *key, u_char *salt,
20 static ngx_int_t ngx_crypt_ssha(ngx_pool_t *pool, u_char *key, u_char *salt,
22 static ngx_int_t ngx_crypt_sha(ngx_pool_t *pool, u_char *key, u_char *salt,
30 ngx_crypt(ngx_pool_t *pool, u_char *key, u_char *salt, u_char **encrypted) in ngx_crypt()
52 ngx_crypt_apr1(ngx_pool_t *pool, u_char *key, u_char *salt, u_char **encrypted) in ngx_crypt_apr1()
168 ngx_crypt_plain(ngx_pool_t *pool, u_char *key, u_char *salt, u_char **encrypted) in ngx_crypt_plain()
188 ngx_crypt_ssha(ngx_pool_t *pool, u_char *key, u_char *salt, u_char **encrypted) in ngx_crypt_ssha()
240 ngx_crypt_sha(ngx_pool_t *pool, u_char *key, u_char *salt, u_char **encrypted) in ngx_crypt_sha()
H A Dngx_array.h21 ngx_pool_t *pool;
25 ngx_array_t *ngx_array_create(ngx_pool_t *p, ngx_uint_t n, size_t size);
32 ngx_array_init(ngx_array_t *array, ngx_pool_t *pool, ngx_uint_t n, size_t size) in ngx_array_init()
H A Dngx_list.h30 ngx_pool_t *pool;
34 ngx_list_t *ngx_list_create(ngx_pool_t *pool, ngx_uint_t n, size_t size);
37 ngx_list_init(ngx_list_t *list, ngx_pool_t *pool, ngx_uint_t n, size_t size) in ngx_list_init()
H A Dngx_hash.h60 ngx_pool_t *pool;
61 ngx_pool_t *temp_pool;
78 ngx_pool_t *pool;
79 ngx_pool_t *temp_pool;
H A Dngx_inet.h119 ngx_int_t ngx_parse_addr(ngx_pool_t *pool, ngx_addr_t *addr, u_char *text,
121 ngx_int_t ngx_parse_addr_port(ngx_pool_t *pool, ngx_addr_t *addr,
123 ngx_int_t ngx_parse_url(ngx_pool_t *pool, ngx_url_t *u);
124 ngx_int_t ngx_inet_resolve_host(ngx_pool_t *pool, ngx_url_t *u);
H A Dngx_buf.c13 ngx_create_temp_buf(ngx_pool_t *pool, size_t size) in ngx_create_temp_buf()
48 ngx_alloc_chain_link(ngx_pool_t *pool) in ngx_alloc_chain_link()
69 ngx_create_chain_of_bufs(ngx_pool_t *pool, ngx_bufs_t *bufs) in ngx_create_chain_of_bufs()
127 ngx_chain_add_copy(ngx_pool_t *pool, ngx_chain_t **chain, ngx_chain_t *in) in ngx_chain_add_copy()
157 ngx_chain_get_free_buf(ngx_pool_t *p, ngx_chain_t **free) in ngx_chain_get_free_buf()
185 ngx_chain_update_chains(ngx_pool_t *p, ngx_chain_t **free, ngx_chain_t **busy, in ngx_chain_update_chains()
H A Dngx_array.c13 ngx_array_create(ngx_pool_t *p, ngx_uint_t n, size_t size) in ngx_array_create()
33 ngx_pool_t *p; in ngx_array_destroy()
52 ngx_pool_t *p; in ngx_array_push()
100 ngx_pool_t *p; in ngx_array_push_n()
H A Dngx_radix_tree.h30 ngx_pool_t *pool;
37 ngx_radix_tree_t *ngx_radix_tree_create(ngx_pool_t *pool,
H A Dngx_file.h75 ngx_pool_t *pool;
135 ngx_int_t ngx_get_full_name(ngx_pool_t *pool, ngx_str_t *prefix,
140 ngx_pool_t *pool, ngx_uint_t persistent, ngx_uint_t clean,
H A Dngx_open_file_cache.h123 ngx_open_file_cache_t *ngx_open_file_cache_init(ngx_pool_t *pool,
126 ngx_open_file_info_t *of, ngx_pool_t *pool);
H A Dngx_inet.c12 static ngx_int_t ngx_parse_unix_domain_url(ngx_pool_t *pool, ngx_url_t *u);
13 static ngx_int_t ngx_parse_inet_url(ngx_pool_t *pool, ngx_url_t *u);
14 static ngx_int_t ngx_parse_inet6_url(ngx_pool_t *pool, ngx_url_t *u);
15 static ngx_int_t ngx_inet_add_addr(ngx_pool_t *pool, ngx_url_t *u,
622 ngx_parse_addr_port(ngx_pool_t *pool, ngx_addr_t *addr, u_char *text, in ngx_parse_addr_port()
684 ngx_parse_url(ngx_pool_t *pool, ngx_url_t *u) in ngx_parse_url()
705 ngx_parse_unix_domain_url(ngx_pool_t *pool, ngx_url_t *u) in ngx_parse_unix_domain_url()
783 ngx_parse_inet_url(ngx_pool_t *pool, ngx_url_t *u) in ngx_parse_inet_url()
989 ngx_parse_inet6_url(ngx_pool_t *pool, ngx_url_t *u) in ngx_parse_inet6_url()
1117 ngx_inet_resolve_host(ngx_pool_t *pool, ngx_url_t *u) in ngx_inet_resolve_host()
[all …]
H A Dngx_crypt.h16 ngx_int_t ngx_crypt(ngx_pool_t *pool, u_char *key, u_char *salt,
H A Dngx_thread_pool.h32 ngx_thread_task_t *ngx_thread_task_alloc(ngx_pool_t *pool, size_t size);
H A Dngx_regex.c68 static ngx_pool_t *ngx_pcre_pool;
81 ngx_regex_malloc_init(ngx_pool_t *pool) in ngx_regex_malloc_init()
233 ngx_pool_t *pool; in ngx_regex_malloc()
H A Dngx_regex.h31 ngx_pool_t *pool;
/f-stack/app/nginx-1.16.1/src/event/
H A Dngx_event_openssl.h223 ngx_int_t ngx_ssl_get_protocol(ngx_connection_t *c, ngx_pool_t *pool,
225 ngx_int_t ngx_ssl_get_cipher_name(ngx_connection_t *c, ngx_pool_t *pool,
227 ngx_int_t ngx_ssl_get_ciphers(ngx_connection_t *c, ngx_pool_t *pool,
229 ngx_int_t ngx_ssl_get_curves(ngx_connection_t *c, ngx_pool_t *pool,
231 ngx_int_t ngx_ssl_get_session_id(ngx_connection_t *c, ngx_pool_t *pool,
235 ngx_int_t ngx_ssl_get_early_data(ngx_connection_t *c, ngx_pool_t *pool,
237 ngx_int_t ngx_ssl_get_server_name(ngx_connection_t *c, ngx_pool_t *pool,
241 ngx_int_t ngx_ssl_get_certificate(ngx_connection_t *c, ngx_pool_t *pool,
245 ngx_int_t ngx_ssl_get_subject_dn(ngx_connection_t *c, ngx_pool_t *pool,
247 ngx_int_t ngx_ssl_get_issuer_dn(ngx_connection_t *c, ngx_pool_t *pool,
[all …]
/f-stack/app/nginx-1.16.1/src/os/unix/
H A Dngx_user.c17 ngx_libc_crypt(ngx_pool_t *pool, u_char *key, u_char *salt, u_char **encrypted) in ngx_libc_crypt()
47 ngx_libc_crypt(ngx_pool_t *pool, u_char *key, u_char *salt, u_char **encrypted) in ngx_libc_crypt()
H A Dngx_files.h133 off_t offset, ngx_pool_t *pool);
376 ngx_int_t ngx_file_aio_init(ngx_file_t *file, ngx_pool_t *pool);
378 off_t offset, ngx_pool_t *pool);
386 off_t offset, ngx_pool_t *pool);
388 off_t offset, ngx_pool_t *pool);
H A Dngx_user.h20 ngx_int_t ngx_libc_crypt(ngx_pool_t *pool, u_char *key, u_char *salt,
H A Dngx_linux_aio_read.c28 ngx_file_aio_init(ngx_file_t *file, ngx_pool_t *pool) in ngx_file_aio_init()
51 ngx_pool_t *pool) in ngx_file_aio_read()
H A Dngx_file_aio_read.c40 ngx_file_aio_init(ngx_file_t *file, ngx_pool_t *pool) in ngx_file_aio_init()
63 ngx_pool_t *pool) in ngx_file_aio_read()
/f-stack/app/nginx-1.16.1/src/http/v2/
H A Dngx_http_v2.h92 ngx_pool_t *pool;
142 ngx_pool_t *pool;
206 ngx_pool_t *pool;

123