l                  38 core/ngx_list.c ngx_list_push(ngx_list_t *l)
l                  43 core/ngx_list.c     last = l->last;
l                  45 core/ngx_list.c     if (last->nelts == l->nalloc) {
l                  49 core/ngx_list.c         last = ngx_palloc(l->pool, sizeof(ngx_list_part_t));
l                  54 core/ngx_list.c         last->elts = ngx_palloc(l->pool, l->nalloc * l->size);
l                  62 core/ngx_list.c         l->last->next = last;
l                  63 core/ngx_list.c         l->last = last;
l                  66 core/ngx_list.c     elt = (char *) last->elts + l->size * last->nelts;
l                  47 core/ngx_palloc.c     ngx_pool_large_t    *l;
l                  58 core/ngx_palloc.c     for (l = pool->large; l; l = l->next) {
l                  60 core/ngx_palloc.c         ngx_log_debug1(NGX_LOG_DEBUG_ALLOC, pool->log, 0, "free: %p", l->alloc);
l                  62 core/ngx_palloc.c         if (l->alloc) {
l                  63 core/ngx_palloc.c             ngx_free(l->alloc);
l                  99 core/ngx_palloc.c     ngx_pool_large_t  *l;
l                 101 core/ngx_palloc.c     for (l = pool->large; l; l = l->next) {
l                 102 core/ngx_palloc.c         if (l->alloc) {
l                 103 core/ngx_palloc.c             ngx_free(l->alloc);
l                 282 core/ngx_palloc.c     ngx_pool_large_t  *l;
l                 284 core/ngx_palloc.c     for (l = pool->large; l; l = l->next) {
l                 285 core/ngx_palloc.c         if (p == l->alloc) {
l                 287 core/ngx_palloc.c                            "free: %p", l->alloc);
l                 288 core/ngx_palloc.c             ngx_free(l->alloc);
l                 289 core/ngx_palloc.c             l->alloc = NULL;
l                 221 http/modules/ngx_http_log_module.c     ngx_uint_t                i, l;
l                 237 http/modules/ngx_http_log_module.c     for (l = 0; l < lcf->logs->nelts; l++) {
l                 239 http/modules/ngx_http_log_module.c         if (ngx_time() == log[l].disk_full_time) {
l                 250 http/modules/ngx_http_log_module.c         ngx_http_script_flush_no_cacheable_variables(r, log[l].format->flushes);
l                 253 http/modules/ngx_http_log_module.c         op = log[l].format->ops->elts;
l                 254 http/modules/ngx_http_log_module.c         for (i = 0; i < log[l].format->ops->nelts; i++) {
l                 265 http/modules/ngx_http_log_module.c         file = log[l].file;
l                 271 http/modules/ngx_http_log_module.c                 ngx_http_log_write(r, &log[l], file->buffer,
l                 281 http/modules/ngx_http_log_module.c                 for (i = 0; i < log[l].format->ops->nelts; i++) {
l                 300 http/modules/ngx_http_log_module.c         for (i = 0; i < log[l].format->ops->nelts; i++) {
l                 306 http/modules/ngx_http_log_module.c         ngx_http_log_write(r, &log[l], line, p - line);
l                1256 mail/ngx_mail_auth_http_module.c     ngx_str_t  l;
l                1258 mail/ngx_mail_auth_http_module.c     l.len = b->last - b->pos;
l                1259 mail/ngx_mail_auth_http_module.c     l.data = b->pos;
l                1261 mail/ngx_mail_auth_http_module.c                    "mail auth http header:\n\"%V\"", &l);
l                 604 mail/ngx_mail_handler.c     ngx_str_t                  l;
l                 637 mail/ngx_mail_handler.c         l.len = s->buffer->last - s->buffer->start;
l                 638 mail/ngx_mail_handler.c         l.data = s->buffer->start;
l                 641 mail/ngx_mail_handler.c                       "client sent too long command \"%V\"", &l);
l                 654 mail/ngx_mail_smtp_handler.c     ngx_str_t                  l;
l                 673 mail/ngx_mail_smtp_handler.c     l.len = s->buffer->last - s->buffer->start;
l                 674 mail/ngx_mail_smtp_handler.c     l.data = s->buffer->start;
l                 676 mail/ngx_mail_smtp_handler.c     for (i = 0; i < l.len; i++) {
l                 677 mail/ngx_mail_smtp_handler.c         ch = l.data[i];
l                 683 mail/ngx_mail_smtp_handler.c         l.data[i] = ' ';
l                 687 mail/ngx_mail_smtp_handler.c         if (l.data[i - 1] != ' ') {
l                 694 mail/ngx_mail_smtp_handler.c     l.len = i;
l                 696 mail/ngx_mail_smtp_handler.c     s->smtp_from.len = l.len;
l                 698 mail/ngx_mail_smtp_handler.c     s->smtp_from.data = ngx_pnalloc(c->pool, l.len);
l                 703 mail/ngx_mail_smtp_handler.c     ngx_memcpy(s->smtp_from.data, l.data, l.len);
l                 718 mail/ngx_mail_smtp_handler.c     ngx_str_t   l;
l                 726 mail/ngx_mail_smtp_handler.c     l.len = s->buffer->last - s->buffer->start;
l                 727 mail/ngx_mail_smtp_handler.c     l.data = s->buffer->start;
l                 729 mail/ngx_mail_smtp_handler.c     for (i = 0; i < l.len; i++) {
l                 730 mail/ngx_mail_smtp_handler.c         ch = l.data[i];
l                 736 mail/ngx_mail_smtp_handler.c         l.data[i] = ' ';
l                 740 mail/ngx_mail_smtp_handler.c         if (l.data[i - 1] != ' ') {
l                 747 mail/ngx_mail_smtp_handler.c     l.len = i;
l                 749 mail/ngx_mail_smtp_handler.c     s->smtp_to.len = l.len;
l                 751 mail/ngx_mail_smtp_handler.c     s->smtp_to.data = ngx_pnalloc(c->pool, l.len);
l                 756 mail/ngx_mail_smtp_handler.c     ngx_memcpy(s->smtp_to.data, l.data, l.len);
l                  57 os/unix/ngx_freebsd_config.h #define CMSG_SPACE(l)       (ALIGN(sizeof(struct cmsghdr)) + ALIGN(l))
l                  60 os/unix/ngx_freebsd_config.h #define CMSG_LEN(l)         (ALIGN(sizeof(struct cmsghdr)) + (l))
l                 133 os/unix/ngx_posix_config.h #define CMSG_SPACE(l)       (ALIGN(sizeof(struct cmsghdr)) + ALIGN(l))
l                 136 os/unix/ngx_posix_config.h #define CMSG_LEN(l)         (ALIGN(sizeof(struct cmsghdr)) + (l))