Home
last modified time | relevance | path

Searched refs:header (Results 176 – 200 of 258) sorted by relevance

1234567891011

/PHP-8.1/win32/
H A Dsendmail.c125 static zend_string *php_win32_mail_trim_header(const char *header) in php_win32_mail_trim_header() argument
131 if (!header) { in php_win32_mail_trim_header()
139 NULL, header, strlen(header), in php_win32_mail_trim_header()
/PHP-8.1/ext/phar/
H A Dzip.c45 phar_zip_extra_field_header header; in phar_zip_process_extra() member
51 if (sizeof(h.header) != php_stream_read(fp, (char *) &h.header, sizeof(h.header))) { in phar_zip_process_extra()
55 if (h.header.tag[0] != 'n' || h.header.tag[1] != 'u') { in phar_zip_process_extra()
57 php_stream_seek(fp, PHAR_GET_16(h.header.size), SEEK_CUR); in phar_zip_process_extra()
58 len -= PHAR_GET_16(h.header.size) + 4; in phar_zip_process_extra()
63 read = php_stream_read(fp, (char *) &(h.unix3.crc32), sizeof(h.unix3) - sizeof(h.header)); in phar_zip_process_extra()
66 if (sizeof(h.unix3) - sizeof(h.header) != read) { in phar_zip_process_extra()
/PHP-8.1/ext/standard/
H A Dconfig.w329 ERROR("Please verify that Argon2 header and libraries >= 20161029 are installed");
H A Dinfo.c1127 PHPAPI ZEND_COLD void php_info_print_table_colspan_header(int num_cols, const char *header) /* {{{ … in php_info_print_table_colspan_header() argument
1132 php_info_printf("<tr class=\"h\"><th colspan=\"%d\">%s</th></tr>\n", num_cols, header ); in php_info_print_table_colspan_header()
1134 spaces = (int)(74 - strlen(header)); in php_info_print_table_colspan_header()
1135 php_info_printf("%*s%s%*s\n", (int)(spaces/2), " ", header, (int)(spaces/2), " "); in php_info_print_table_colspan_header()
/PHP-8.1/sapi/embed/
H A DREADME.md34 To compile this, we must point the compiler to the PHP header files. The paths to the header files …
/PHP-8.1/ext/intl/locale/
H A Dlocale_arginfo.h62 ZEND_ARG_TYPE_INFO(0, header, IS_STRING, 0)
/PHP-8.1/ext/standard/tests/file/
H A Dfgetc_variation1.phpt5 // include the header for common test function
H A Dfgets_variation1.phpt10 // include the header for common test function
H A Dfgetc_variation3.phpt14 // include the header for common test function
/PHP-8.1/ext/sockets/
H A Dconfig.m466 dnl checking the header is not enough (eg DragonFlyBSD)
/PHP-8.1/ext/soap/
H A Dsoap.stub.php68 public function addSoapHeader(SoapHeader $header): void {} argument
H A Dphp_sdl.c43 static void delete_header(zval *header);
232 zval *header = NULL; in sdl_set_uri_credentials() local
287 s = strstr(Z_STRVAL_P(header), "Authorization: Basic"); in sdl_set_uri_credentials()
295 memcpy(Z_STRVAL(new_header), Z_STRVAL_P(header), s - Z_STRVAL_P(header)); in sdl_set_uri_credentials()
296 …emcpy(Z_STRVAL(new_header) + (s - Z_STRVAL_P(header)), rest, Z_STRLEN_P(header) - (rest - Z_STRVAL… in sdl_set_uri_credentials()
297 ZVAL_COPY(&ctx->old_header, header); in sdl_set_uri_credentials()
454 tmp = get_attribute(header->properties, "message"); in wsdl_soap_binding_header()
469 tmp = get_attribute(header->properties, "part"); in wsdl_soap_binding_header()
482 tmp = get_attribute(header->properties, "use"); in wsdl_soap_binding_header()
489 tmp = get_attribute(header->properties, "namespace"); in wsdl_soap_binding_header()
[all …]
/PHP-8.1/docs/
H A Dself-contained-extensions.md67 header files, but that is not important here).
166 2. The following should be defined in one of the extension header files
/PHP-8.1/ext/mysqli/tests/
H A Dmysqli_poll_kill.phpt202 Warning: mysqli_reap_async_query(): Error reading result set's header in %s on line %d
208 Warning: mysqli_reap_async_query(): Error reading result set's header in %s on line %d
/PHP-8.1/win32/build/
H A Dconfutils.js1112 if (header = FSO.OpenTextFile(project_header, 1)) {
1113 contents = header.ReadAll();
1123 header.Close();
1835 function output_as_table(header, ar_out) argument
1837 var l = header.length;
1864 if (tmax > header[j].length) {
1867 max[j] = header[j].length;
1869 if (tmin < header[j].length) {
1870 min[j] = header[j].length;
1888 out += " " + header[j];
[all …]
/PHP-8.1/ext/oci8/
H A Dconfig.m487 dnl OCI8_INIT_DTRACE(providerdesc, header-file, sources)
101 dnl header-file
377 AC_MSG_CHECKING([Oracle Instant Client SDK header directory])
401 AC_MSG_ERROR([Oracle Instant Client SDK header files not found])
/PHP-8.1/ext/fileinfo/
H A Dmagicdata.patch25 # https://github.com/ckolivas/lrzip/blob/master/doc/magic.header.txt
/PHP-8.1/ext/standard/tests/mail/
H A Dmail_basic7.phpt2 Test mail() function : array extra header basic functionality
234 ValueError: The additional headers cannot contain the "To" header
/PHP-8.1/ext/curl/
H A Dinterface.c1635 if (ch->header.str) { in curl_debug()
1636 zend_string_release_ex(ch->header.str, 0); in curl_debug()
3045 if (ch->header.str) { in _php_curl_cleanup_handle()
3046 zend_string_release_ex(ch->header.str, 0); in _php_curl_cleanup_handle()
3047 ch->header.str = NULL; in _php_curl_cleanup_handle()
3266 if (ch->header.str) { in PHP_FUNCTION()
3267 CAASTR("request_header", ch->header.str); in PHP_FUNCTION()
3272 if (ch->header.str) { in PHP_FUNCTION()
3273 RETURN_STR_COPY(ch->header.str); in PHP_FUNCTION()
3477 if (ch->header.str) { in curl_free_obj()
[all …]
/PHP-8.1/sapi/fpm/fpm/
H A Dfpm_main.c349 strncasecmp(h->header, "Status:", sizeof("Status:") - 1) == 0 in sapi_cgi_send_headers()
386 strncasecmp(h->header, "Status:", sizeof("Status:") - 1) == 0 in sapi_cgi_send_headers()
390 PHPWRITE_H(h->header, h->header_len); in sapi_cgi_send_headers()
394 strncasecmp(h->header, "Content-Type:", sizeof("Content-Type:") - 1) == 0 in sapi_cgi_send_headers()
399 PHPWRITE_H(h->header, h->header_len); in sapi_cgi_send_headers()
/PHP-8.1/ext/fileinfo/tests/
H A Dmagic3103 # header flags to mark header extensions
3663 # file header
5927 # have header string
9445 # header size >= 32
18520 # Sega PVR header.
18564 # Sega GVR header.
18706 # Main KTX header.
18977 # Main KTX2 header.
19025 # Main VTF header.
20544 # read the offset to add to the start of the header, and the header
[all …]
H A Dmagic私はガラスを食べられます3103 # header flags to mark header extensions
3663 # file header
5927 # have header string
9445 # header size >= 32
18520 # Sega PVR header.
18564 # Sega GVR header.
18706 # Main KTX header.
18977 # Main KTX2 header.
19025 # Main VTF header.
20544 # read the offset to add to the start of the header, and the header
[all …]
/PHP-8.1/ext/phar/tests/tar/files/
H A Dmake.dangerous.tar.php.inc3 // this tarmaker makes a malicious tar with a header designed to overflow the buffer
/PHP-8.1/main/
H A DSAPI.h45 char *header; member
/PHP-8.1/ext/exif/tests/
H A Dbug72094.phpt2 Bug #72094: Out of bounds heap read access in exif header processing

Completed in 256 milliseconds

1234567891011