Home
last modified time | relevance | path

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

/PHP-5.3/sapi/fpm/fpm/
H A Dfastcgi.c614 int zlen; in fcgi_read_request() local
623 zlen = Z_STRLEN_PP(value); in fcgi_read_request()
624 if ((p + 4 + 4 + str_length + zlen) >= (buf + sizeof(buf))) { in fcgi_read_request()
635 if (zlen < 0x80) { in fcgi_read_request()
636 *p++ = zlen; in fcgi_read_request()
638 *p++ = ((zlen >> 24) & 0xff) | 0x80; in fcgi_read_request()
639 *p++ = (zlen >> 16) & 0xff; in fcgi_read_request()
640 *p++ = (zlen >> 8) & 0xff; in fcgi_read_request()
641 *p++ = zlen & 0xff; in fcgi_read_request()
645 memcpy(p, Z_STRVAL_PP(value), zlen); in fcgi_read_request()
[all …]
/PHP-5.3/sapi/cgi/
H A Dfastcgi.c781 int zlen; in fcgi_read_request() local
790 zlen = Z_STRLEN_PP(value); in fcgi_read_request()
791 if ((p + 4 + 4 + str_length + zlen) >= (buf + sizeof(buf))) { in fcgi_read_request()
802 if (zlen < 0x80) { in fcgi_read_request()
803 *p++ = zlen; in fcgi_read_request()
805 *p++ = ((zlen >> 24) & 0xff) | 0x80; in fcgi_read_request()
806 *p++ = (zlen >> 16) & 0xff; in fcgi_read_request()
807 *p++ = (zlen >> 8) & 0xff; in fcgi_read_request()
808 *p++ = zlen & 0xff; in fcgi_read_request()
812 memcpy(p, Z_STRVAL_PP(value), zlen); in fcgi_read_request()
[all …]
/PHP-5.3/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 18 milliseconds