Lines Matching defs:size
143 * Check a new AJP Message by looking at signature and return its size
501 apr_uint16_t size;
505 status = ajp_msg_get_uint16(msg, &size);
508 if ((status != APR_SUCCESS) || (size + start > msg->max_size)) {
512 msg->pos += (apr_size_t)size;
531 apr_uint16_t size;
535 status = ajp_msg_get_uint16(msg, &size);
539 if ((status != APR_SUCCESS) || (size + start > msg->max_size)) {
542 msg->pos += (apr_size_t)size; /* only bytes, no trailer */
545 *rvalue_len = size;
555 * @param size size of the buffer to create
559 apr_status_t ajp_msg_create(apr_pool_t *pool, apr_size_t size, ajp_msg_t **rmsg)
565 msg->buf = (apr_byte_t *)apr_palloc(pool, size);
568 msg->max_size = size;
586 "small %" APR_SIZE_T_FMT ", max size is %" APR_SIZE_T_FMT,