Searched refs:ctr (Results 1 – 6 of 6) sorted by relevance
/PHP-7.1/ext/standard/ |
H A D | head.c | 42 sapi_header_line ctr = {0}; in PHP_FUNCTION() local 45 if (zend_parse_parameters(ZEND_NUM_ARGS(), "s|bl", &ctr.line, in PHP_FUNCTION() 46 &len, &rep, &ctr.response_code) == FAILURE) in PHP_FUNCTION() 49 ctr.line_len = (uint)len; in PHP_FUNCTION() 58 sapi_header_line ctr = {0}; in PHP_FUNCTION() local 61 if (zend_parse_parameters(ZEND_NUM_ARGS(), "|s", &ctr.line, in PHP_FUNCTION() 65 ctr.line_len = (uint)len; in PHP_FUNCTION() 85 sapi_header_line ctr = {0}; in php_setcookie() local 182 ctr.line = cookie; in php_setcookie() 183 ctr.line_len = (uint)strlen(cookie); in php_setcookie() [all …]
|
/PHP-7.1/ext/mcrypt/tests/ |
H A D | mcrypt_list_modes.phpt | 16 string(3) "ctr"
|
/PHP-7.1/ext/phar/ |
H A D | phar_object.c | 141 sapi_header_line ctr = {0}; in phar_file_action() local 172 ctr.line_len = spprintf(&(ctr.line), 0, "Content-type: %s", mime_type); in phar_file_action() 174 efree(ctr.line); in phar_file_action() 177 efree(ctr.line); in phar_file_action() 303 sapi_header_line ctr = {0}; in phar_do_403() local 305 ctr.response_code = 403; in phar_do_403() 317 sapi_header_line ctr = {0}; in phar_do_404() local 329 ctr.response_code = 404; in phar_do_404() 793 ctr.response_code = 0; in PHP_METHOD() 798 ctr.line_len = spprintf(&(ctr.line), 4096, "Location: %s%s", path_info, entry); in PHP_METHOD() [all …]
|
/PHP-7.1/main/ |
H A D | SAPI.c | 623 sapi_header_line ctr = {0}; in sapi_add_header_ex() local 626 ctr.line = header_line; in sapi_add_header_ex() 627 ctr.line_len = header_line_len; in sapi_add_header_ex() 630 &ctr); in sapi_add_header_ex()
|
H A D | main.c | 1242 sapi_header_line ctr = {0}; in php_error_cb() local 1244 ctr.line = "HTTP/1.0 500 Internal Server Error"; in php_error_cb() 1245 ctr.line_len = sizeof("HTTP/1.0 500 Internal Server Error") - 1; in php_error_cb() 1246 sapi_header_op(SAPI_HEADER_REPLACE, &ctr); in php_error_cb()
|
/PHP-7.1/sapi/fpm/fpm/ |
H A D | fpm_main.c | 1980 sapi_header_line ctr = {0}; local 1982 ctr.line = CGIG(error_header); 1983 ctr.line_len = strlen(CGIG(error_header)); 1984 sapi_header_op(SAPI_HEADER_REPLACE, &ctr);
|
Completed in 44 milliseconds