Home
last modified time | relevance | path

Searched refs:zlen (Results 1 – 3 of 3) sorted by relevance

/PHP-5.5/sapi/fpm/fpm/
H A Dfastcgi.c622 int zlen; in fcgi_read_request() local
631 zlen = Z_STRLEN_PP(value); in fcgi_read_request()
632 if ((p + 4 + 4 + str_length + zlen) >= (buf + sizeof(buf))) { in fcgi_read_request()
643 if (zlen < 0x80) { in fcgi_read_request()
644 *p++ = zlen; in fcgi_read_request()
646 *p++ = ((zlen >> 24) & 0xff) | 0x80; in fcgi_read_request()
647 *p++ = (zlen >> 16) & 0xff; in fcgi_read_request()
648 *p++ = (zlen >> 8) & 0xff; in fcgi_read_request()
649 *p++ = zlen & 0xff; in fcgi_read_request()
653 memcpy(p, Z_STRVAL_PP(value), zlen); in fcgi_read_request()
[all …]
/PHP-5.5/sapi/cgi/
H A Dfastcgi.c985 unsigned int zlen; in fcgi_read_request() local
1004 zlen = Z_STRLEN_PP(value); in fcgi_read_request()
1005 if ((p + 4 + 4 + q->var_len + zlen) >= (buf + sizeof(buf))) { in fcgi_read_request()
1016 if (zlen < 0x80) { in fcgi_read_request()
1017 *p++ = zlen; in fcgi_read_request()
1019 *p++ = ((zlen >> 24) & 0xff) | 0x80; in fcgi_read_request()
1020 *p++ = (zlen >> 16) & 0xff; in fcgi_read_request()
1021 *p++ = (zlen >> 8) & 0xff; in fcgi_read_request()
1022 *p++ = zlen & 0xff; in fcgi_read_request()
1026 memcpy(p, Z_STRVAL_PP(value), zlen); in fcgi_read_request()
[all …]
/PHP-5.5/sapi/apache_hooks/
H A Dphp_apache.c506 long zlen; in PHP_FUNCTION() local
509 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "|l", &zlen) == FAILURE) { in PHP_FUNCTION()
518 (void)ap_set_content_length(r, zlen); in PHP_FUNCTION()

Completed in 20 milliseconds