list               14 core/ngx_list.c     ngx_list_t  *list;
list               16 core/ngx_list.c     list = ngx_palloc(pool, sizeof(ngx_list_t));
list               17 core/ngx_list.c     if (list == NULL) {
list               21 core/ngx_list.c     list->part.elts = ngx_palloc(pool, n * size);
list               22 core/ngx_list.c     if (list->part.elts == NULL) {
list               26 core/ngx_list.c     list->part.nelts = 0;
list               27 core/ngx_list.c     list->part.next = NULL;
list               28 core/ngx_list.c     list->last = &list->part;
list               29 core/ngx_list.c     list->size = size;
list               30 core/ngx_list.c     list->nalloc = n;
list               31 core/ngx_list.c     list->pool = pool;
list               33 core/ngx_list.c     return list;
list               36 core/ngx_list.h ngx_list_init(ngx_list_t *list, ngx_pool_t *pool, ngx_uint_t n, size_t size)
list               38 core/ngx_list.h     list->part.elts = ngx_palloc(pool, n * size);
list               39 core/ngx_list.h     if (list->part.elts == NULL) {
list               43 core/ngx_list.h     list->part.nelts = 0;
list               44 core/ngx_list.h     list->part.next = NULL;
list               45 core/ngx_list.h     list->last = &list->part;
list               46 core/ngx_list.h     list->size = size;
list               47 core/ngx_list.h     list->nalloc = n;
list               48 core/ngx_list.h     list->pool = pool;
list               79 core/ngx_list.h void *ngx_list_push(ngx_list_t *list);
list               68 event/modules/ngx_eventport_module.c int port_getn(int port, port_event_t list[], uint_t max, uint_t *nget,
list               69 event/modules/ngx_poll_module.c     struct pollfd   *list;
list               79 event/modules/ngx_poll_module.c         list = ngx_alloc(sizeof(struct pollfd) * cycle->connection_n,
list               81 event/modules/ngx_poll_module.c         if (list == NULL) {
list               86 event/modules/ngx_poll_module.c             ngx_memcpy(list, event_list, sizeof(ngx_event_t *) * nevents);
list               90 event/modules/ngx_poll_module.c         event_list = list;
list              225 event/ngx_event_openssl.c     STACK_OF(X509_NAME)  *list;
list              248 event/ngx_event_openssl.c     list = SSL_load_client_CA_file((char *) cert->data);
list              250 event/ngx_event_openssl.c     if (list == NULL) {
list              263 event/ngx_event_openssl.c     SSL_CTX_set_client_CA_list(ssl->ctx, list);
list              882 http/ngx_http.c     ngx_queue_init(&lq->list);
list             1044 http/ngx_http.c     ngx_queue_add(&lq->list, &tail);
list             1047 http/ngx_http.c         ngx_http_create_locations_list(&lq->list, ngx_queue_head(&lq->list));
list             1051 http/ngx_http.c     ngx_queue_split(&lq->list, x, &tail);
list             1054 http/ngx_http.c     ngx_http_create_locations_list(&lq->list, ngx_queue_head(&lq->list));
list             1125 http/ngx_http.c     if (ngx_queue_empty(&lq->list)) {
list             1129 http/ngx_http.c     node->tree = ngx_http_create_locations_tree(cf, &lq->list, prefix + len);
list              424 http/ngx_http_core_module.h     ngx_queue_t                      list;