Home
last modified time | relevance | path

Searched refs:buffer (Results 151 – 175 of 291) sorted by relevance

12345678910>>...12

/PHP-5.5/ext/phar/tests/tar/
H A Dbignames_overflow.phpt2 Phar: tar with huge filenames, buffer overflow
/PHP-5.5/ext/phar/tests/
H A D010.phpt2 Phar::mapPhar buffer overrun
/PHP-5.5/ext/xmlwriter/tests/
H A D012.phpt27 // Force to write and empty the buffer
H A DOO_010.phpt26 // Force to write and empty the buffer
H A D008.phpt28 // Force to write and empty the buffer
H A D009.phpt33 // Force to write and empty the buffer
H A DOO_009.phpt33 // Force to write and empty the buffer
H A DOO_011.phpt28 // Force to write and empty the buffer
H A D007.phpt28 // Force to write and empty the buffer
H A DOO_007.phpt29 // Force to write and empty the buffer
/PHP-5.5/ext/mbstring/libmbfl/tests/
H A Dconv_kana.c136 dev.buffer[dev.pos++] = (unsigned char)c; in main()
H A Dconv_encoding.c90 dev.buffer[dev.pos++] = (unsigned char)c; in main()
H A Dstrcut.c99 dev.buffer[dev.pos++] = (unsigned char)c; in main()
/PHP-5.5/ext/standard/
H A Dimage.c181 static unsigned long int php_swf_get_bits (unsigned char* buffer, unsigned int pos, unsigned int co… in php_swf_get_bits() argument
189 ((((buffer[loop / 8]) >> (7 - (loop % 8))) & 0x01) << (count - (loop - pos) - 1)); in php_swf_get_bits()
443 unsigned char *buffer; in php_read_APP() local
453 buffer = emalloc(length); in php_read_APP()
455 if (php_stream_read(stream, buffer, (long) length) <= 0) { in php_read_APP()
456 efree(buffer); in php_read_APP()
464 add_assoc_stringl(info, markername, buffer, length, 1); in php_read_APP()
467 efree(buffer); in php_read_APP()
H A Dftp_fopen_wrapper.c83 static inline int get_ftp_result(php_stream *stream, char *buffer, size_t buffer_size TSRMLS_DC) in get_ftp_result() argument
85 while (php_stream_gets(stream, buffer, buffer_size-1) && in get_ftp_result()
86 !(isdigit((int) buffer[0]) && isdigit((int) buffer[1]) && in get_ftp_result()
87 isdigit((int) buffer[2]) && buffer[3] == ' ')); in get_ftp_result()
88 return strtol(buffer, NULL, 10); in get_ftp_result()
/PHP-5.5/TSRM/
H A Dtsrm_win32.h109 TSRM_API char *realpath(char *orig_path, char *buffer);
/PHP-5.5/ext/standard/tests/file/
H A Dfpassthru_error.phpt8 and writes the results to the output buffer.
/PHP-5.5/ext/standard/tests/filters/
H A Dstream_filter_remove_basic.phpt11 …* Description: Flushes any data in the filter's internal buffer, removes it from the chain, and fr…
/PHP-5.5/tests/output/
H A Dob_start_error_001.phpt42 Notice: ob_start(): failed to create buffer in %s on line 20
/PHP-5.5/ext/fileinfo/tests/
H A Dfinfo_buffer_basic.phpt8 * Description: Return infromation about a string buffer.
/PHP-5.5/sapi/pi3web/
H A Dpi3web_sapi.c212 static int sapi_pi3web_read_post(char *buffer, uint count_bytes TSRMLS_DC) in sapi_pi3web_read_post() argument
221 memcpy(buffer, lpCB->lpbData+SG(read_post_bytes), read_from_buf); in sapi_pi3web_read_post()
231 if (!lpCB->ReadClient(lpCB->ConnID, buffer+read_from_buf+cbRead, &cbSize) || cbSize==0) { in sapi_pi3web_read_post()
/PHP-5.5/ext/posix/
H A Dposix.c678 char buffer[L_ctermid]; in PHP_FUNCTION() local
682 if (NULL == ctermid(buffer)) { in PHP_FUNCTION()
690 RETURN_STRING(buffer, 1); in PHP_FUNCTION()
810 char buffer[MAXPATHLEN]; in PHP_FUNCTION() local
815 p = VCWD_GETCWD(buffer, MAXPATHLEN); in PHP_FUNCTION()
821 RETURN_STRING(buffer, 1); in PHP_FUNCTION()
/PHP-5.5/ext/zip/
H A Dphp_zip.c1369 char *buffer; in PHP_NAMED_FUNCTION() local
1386 buffer[n] = 0; in PHP_NAMED_FUNCTION()
1387 RETURN_STRINGL(buffer, n, 0); in PHP_NAMED_FUNCTION()
1389 efree(buffer); in PHP_NAMED_FUNCTION()
1827 char *buffer, *name; in ZIPARCHIVE_METHOD() local
2523 char *buffer; in php_zip_get_from() local
2561 buffer = safe_emalloc(len, 1, 2); in php_zip_get_from()
2562 n = zip_fread(zf, buffer, len); in php_zip_get_from()
2564 efree(buffer); in php_zip_get_from()
2569 buffer[n] = 0; in php_zip_get_from()
[all …]
/PHP-5.5/ext/oci8/
H A Doci8_interface.c282 char *buffer = NULL; local
298 if (php_oci_lob_read(descriptor, -1, 0, &buffer, &buffer_len TSRMLS_CC)) {
302 RETURN_STRINGL(buffer, buffer_len, 0);
317 char *buffer; local
347 RETURN_STRINGL(buffer, buffer_len, 0);
879 char *buffer; local
978 if (php_oci_lob_read(descriptor, block_length, start, &buffer, &tmp_bytes_read TSRMLS_CC)) {
982 if (tmp_bytes_read && !php_stream_write(stream, buffer, tmp_bytes_read)) {
984 efree(buffer);
987 if (buffer) {
[all …]
/PHP-5.5/ext/ftp/
H A Dftp.c593 char *buffer; in ftp_chmod() local
599 spprintf(&buffer, 0, "CHMOD %o %s", mode, filename); in ftp_chmod()
601 if (!ftp_putcmd(ftp, "SITE", buffer)) { in ftp_chmod()
602 efree(buffer); in ftp_chmod()
606 efree(buffer); in ftp_chmod()
621 char buffer[64]; in ftp_alloc() local
627 snprintf(buffer, sizeof(buffer) - 1, "%ld", size); in ftp_alloc()
629 if (!ftp_putcmd(ftp, "ALLO", buffer)) { in ftp_alloc()

Completed in 81 milliseconds

12345678910>>...12