Searched refs:ctr (Results 1 - 7 of 7) sorted by relevance
| /PHP_TRUNK/main/ |
| H A D | SAPI.c | 624 sapi_header_line ctr = {0}; local 627 ctr.line = header_line; 628 ctr.line_len = header_line_len; 631 &ctr TSRMLS_CC);
|
| H A D | main.c | 1151 sapi_header_line ctr = {0}; local 1153 ctr.line = "HTTP/1.0 500 Internal Server Error"; 1154 ctr.line_len = sizeof("HTTP/1.0 500 Internal Server Error") - 1; 1155 sapi_header_op(SAPI_HEADER_REPLACE, &ctr TSRMLS_CC);
|
| /PHP_TRUNK/sapi/pi3web/ |
| H A D | pi3web_sapi.c | 379 sapi_header_line ctr = {0}; local 381 ctr.line = "Content-Type: text/plain"; 382 ctr.line_len = strlen(ctr.line); 384 sapi_header_op(SAPI_HEADER_REPLACE, &ctr TSRMLS_CC);
|
| /PHP_TRUNK/sapi/tux/ |
| H A D | php_tux.c | 195 sapi_header_line ctr = {0}; local 197 ctr.line = buf; 198 ctr.line_len = slprintf(buf, sizeof(buf), "Server: %s", TUXAPI_version); 199 sapi_header_op(SAPI_HEADER_REPLACE, &ctr TSRMLS_CC);
|
| /PHP_TRUNK/ext/standard/ |
| H A D | head.c | 42 sapi_header_line ctr = {0}; local 44 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s|bl", &ctr.line, 45 &ctr.line_len, &rep, &ctr.response_code) == FAILURE) 48 sapi_header_op(rep ? SAPI_HEADER_REPLACE:SAPI_HEADER_ADD, &ctr TSRMLS_CC); 56 sapi_header_line ctr = {0}; local 58 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "|s", &ctr.line, 59 &ctr.line_len) == FAILURE) 62 sapi_header_op(ZEND_NUM_ARGS() == 0 ? SAPI_HEADER_DELETE_ALL : SAPI_HEADER_DELETE, &ctr TSRMLS_CC); 81 sapi_header_line ctr local [all...] |
| /PHP_TRUNK/sapi/fpm/fpm/ |
| H A D | fpm_main.c | 1947 sapi_header_line ctr = {0}; local 1949 ctr.line = CGIG(error_header); 1950 ctr.line_len = strlen(CGIG(error_header)); 1951 sapi_header_op(SAPI_HEADER_REPLACE, &ctr TSRMLS_CC);
|
| /PHP_TRUNK/ext/phar/ |
| H A D | phar_object.c | 170 sapi_header_line ctr = {0}; local 200 ctr.line_len = spprintf(&(ctr.line), 0, "Content-type: %s", mime_type); 201 sapi_header_op(SAPI_HEADER_REPLACE, &ctr TSRMLS_CC); 202 efree(ctr.line); 203 ctr.line_len = spprintf(&(ctr.line), 0, "Content-length: %u", info->uncompressed_filesize); 204 sapi_header_op(SAPI_HEADER_REPLACE, &ctr TSRMLS_CC); 205 efree(ctr.line); 335 sapi_header_line ctr local 350 sapi_header_line ctr = {0}; local 801 sapi_header_line ctr = {0}; local [all...] |
Completed in 15 milliseconds