Home
last modified time | relevance | path

Searched refs:ctr (Results 1 – 8 of 8) sorted by relevance

/PHP-5.3/ext/standard/
H A Dhead.c43 sapi_header_line ctr = {0}; in PHP_FUNCTION() local
45 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s|bl", &ctr.line, in PHP_FUNCTION()
46 &ctr.line_len, &rep, &ctr.response_code) == FAILURE) in PHP_FUNCTION()
49 sapi_header_op(rep ? SAPI_HEADER_REPLACE:SAPI_HEADER_ADD, &ctr TSRMLS_CC); in PHP_FUNCTION()
57 sapi_header_line ctr = {0}; in PHP_FUNCTION() local
59 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "|s", &ctr.line, in PHP_FUNCTION()
60 &ctr.line_len) == FAILURE) in PHP_FUNCTION()
82 sapi_header_line ctr = {0}; in php_setcookie() local
162 ctr.line = cookie; in php_setcookie()
163 ctr.line_len = strlen(cookie); in php_setcookie()
[all …]
/PHP-5.3/ext/mcrypt/tests/
H A Dmcrypt_list_modes.phpt15 string(3) "ctr"
/PHP-5.3/sapi/pi3web/
H A Dpi3web_sapi.c379 sapi_header_line ctr = {0}; in PHP5_wrapper() local
381 ctr.line = "Content-Type: text/plain"; in PHP5_wrapper()
382 ctr.line_len = strlen(ctr.line); in PHP5_wrapper()
384 sapi_header_op(SAPI_HEADER_REPLACE, &ctr TSRMLS_CC); in PHP5_wrapper()
/PHP-5.3/sapi/tux/
H A Dphp_tux.c195 sapi_header_line ctr = {0}; in sapi_tux_register_variables() local
197 ctr.line = buf; in sapi_tux_register_variables()
198 ctr.line_len = slprintf(buf, sizeof(buf), "Server: %s", TUXAPI_version); in sapi_tux_register_variables()
199 sapi_header_op(SAPI_HEADER_REPLACE, &ctr TSRMLS_CC); in sapi_tux_register_variables()
/PHP-5.3/ext/phar/
H A Dphar_object.c169 sapi_header_line ctr = {0}; in phar_file_action() local
199 ctr.line_len = spprintf(&(ctr.line), 0, "Content-type: %s", mime_type); in phar_file_action()
201 efree(ctr.line); in phar_file_action()
204 efree(ctr.line); in phar_file_action()
334 sapi_header_line ctr = {0}; in phar_do_403() local
336 ctr.response_code = 403; in phar_do_403()
349 sapi_header_line ctr = {0}; in phar_do_404() local
361 ctr.response_code = 404; in phar_do_404()
811 ctr.response_code = 0;
816 ctr.line_len = spprintf(&(ctr.line), 4096, "Location: %s%s", path_info, entry);
[all …]
/PHP-5.3/main/
H A DSAPI.c538 sapi_header_line ctr = {0}; in sapi_add_header_ex() local
541 ctr.line = header_line; in sapi_add_header_ex()
542 ctr.line_len = header_line_len; in sapi_add_header_ex()
545 &ctr TSRMLS_CC); in sapi_add_header_ex()
H A Dmain.c1114 sapi_header_line ctr = {0}; in php_error_cb() local
1116 ctr.line = "HTTP/1.0 500 Internal Server Error"; in php_error_cb()
1117 ctr.line_len = strlen(ctr.line); in php_error_cb()
1118 sapi_header_op(SAPI_HEADER_REPLACE, &ctr TSRMLS_CC); in php_error_cb()
/PHP-5.3/sapi/fpm/fpm/
H A Dfpm_main.c1943 sapi_header_line ctr = {0}; local
1945 ctr.line = CGIG(error_header);
1946 ctr.line_len = strlen(CGIG(error_header));
1947 sapi_header_op(SAPI_HEADER_REPLACE, &ctr TSRMLS_CC);

Completed in 42 milliseconds