msg                90 core/ngx_log.c     u_char  *p, *last, *msg;
msg               114 core/ngx_log.c     msg = p;
msg               151 core/ngx_log.c     msg -= (7 + err_levels[level].len + 3);
msg               153 core/ngx_log.c     (void) ngx_sprintf(msg, "nginx: [%V] ", &err_levels[level]);
msg               155 core/ngx_log.c     (void) ngx_write_console(ngx_stderr, msg, p - msg);
msg              1137 http/modules/ngx_http_fastcgi_module.c     u_char                         *p, *msg, *start, *last,
msg              1224 http/modules/ngx_http_fastcgi_module.c                 msg = u->buffer.pos;
msg              1236 http/modules/ngx_http_fastcgi_module.c                 for (p = u->buffer.pos - 1; msg < p; p--) {
msg              1245 http/modules/ngx_http_fastcgi_module.c                               "FastCGI sent in stderr: \"%*s\"", p - msg, msg);
msg              1253 http/modules/ngx_http_fastcgi_module.c                         if (ngx_strnstr(msg, (char *) pattern[i].data,
msg              1254 http/modules/ngx_http_fastcgi_module.c                                         p - msg)
msg              1571 http/modules/ngx_http_fastcgi_module.c     u_char                  *m, *msg;
msg              1657 http/modules/ngx_http_fastcgi_module.c                 msg = f->pos;
msg              1669 http/modules/ngx_http_fastcgi_module.c                 for (m = f->pos - 1; msg < m; m--) {
msg              1677 http/modules/ngx_http_fastcgi_module.c                               m + 1 - msg, msg);
msg                72 http/modules/ngx_http_xslt_filter_module.c static void ngx_cdecl ngx_http_xslt_sax_error(void *data, const char *msg, ...);
msg               419 http/modules/ngx_http_xslt_filter_module.c ngx_http_xslt_sax_error(void *data, const char *msg, ...)
msg               432 http/modules/ngx_http_xslt_filter_module.c     va_start(args, msg);
msg               433 http/modules/ngx_http_xslt_filter_module.c     n = (size_t) vsnprintf((char *) buf, NGX_MAX_ERROR_STR, msg, args);
msg                19 os/unix/ngx_channel.c     struct msghdr       msg;
msg                29 os/unix/ngx_channel.c         msg.msg_control = NULL;
msg                30 os/unix/ngx_channel.c         msg.msg_controllen = 0;
msg                33 os/unix/ngx_channel.c         msg.msg_control = (caddr_t) &cmsg;
msg                34 os/unix/ngx_channel.c         msg.msg_controllen = sizeof(cmsg);
msg                53 os/unix/ngx_channel.c     msg.msg_flags = 0;
msg                58 os/unix/ngx_channel.c         msg.msg_accrights = NULL;
msg                59 os/unix/ngx_channel.c         msg.msg_accrightslen = 0;
msg                62 os/unix/ngx_channel.c         msg.msg_accrights = (caddr_t) &ch->fd;
msg                63 os/unix/ngx_channel.c         msg.msg_accrightslen = sizeof(int);
msg                71 os/unix/ngx_channel.c     msg.msg_name = NULL;
msg                72 os/unix/ngx_channel.c     msg.msg_namelen = 0;
msg                73 os/unix/ngx_channel.c     msg.msg_iov = iov;
msg                74 os/unix/ngx_channel.c     msg.msg_iovlen = 1;
msg                76 os/unix/ngx_channel.c     n = sendmsg(s, &msg, 0);
msg                98 os/unix/ngx_channel.c     struct msghdr       msg;
msg               112 os/unix/ngx_channel.c     msg.msg_name = NULL;
msg               113 os/unix/ngx_channel.c     msg.msg_namelen = 0;
msg               114 os/unix/ngx_channel.c     msg.msg_iov = iov;
msg               115 os/unix/ngx_channel.c     msg.msg_iovlen = 1;
msg               118 os/unix/ngx_channel.c     msg.msg_control = (caddr_t) &cmsg;
msg               119 os/unix/ngx_channel.c     msg.msg_controllen = sizeof(cmsg);
msg               121 os/unix/ngx_channel.c     msg.msg_accrights = (caddr_t) &fd;
msg               122 os/unix/ngx_channel.c     msg.msg_accrightslen = sizeof(int);
msg               125 os/unix/ngx_channel.c     n = recvmsg(s, &msg, 0);
msg               172 os/unix/ngx_channel.c     if (msg.msg_flags & (MSG_TRUNC|MSG_CTRUNC)) {
msg               180 os/unix/ngx_channel.c         if (msg.msg_accrightslen != sizeof(int)) {
msg                34 os/unix/ngx_errno.c     ngx_str_t  *msg;
msg                36 os/unix/ngx_errno.c     msg = ((ngx_uint_t) err < NGX_SYS_NERR) ? &ngx_sys_errlist[err]:
msg                38 os/unix/ngx_errno.c     size = ngx_min(size, msg->len);
msg                40 os/unix/ngx_errno.c     return ngx_cpymem(errstr, msg->data, size);
msg                47 os/unix/ngx_errno.c     char       *msg;
msg                65 os/unix/ngx_errno.c         msg = strerror(err);
msg                66 os/unix/ngx_errno.c         len = ngx_strlen(msg);
msg                73 os/unix/ngx_errno.c         ngx_memcpy(p, msg, len);