Home
last modified time | relevance | path

Searched refs:buffer (Results 201 – 225 of 291) sorted by path

12345678910>>...12

/PHP-5.5/ext/xmlwriter/
H A Dphp_xmlwriter.c1835 xmlBufferPtr buffer; in PHP_FUNCTION() local
1849 buffer = xmlBufferCreate(); in PHP_FUNCTION()
1851 if (buffer == NULL) { in PHP_FUNCTION()
1856 ptr = xmlNewTextWriterMemory(buffer, 0); in PHP_FUNCTION()
1858 xmlBufferFree(buffer); in PHP_FUNCTION()
1864 intern->output = buffer; in PHP_FUNCTION()
1888 xmlBufferPtr buffer; in php_xmlwriter_flush() local
1913 buffer = intern->output; in php_xmlwriter_flush()
1914 if (force_string == 1 && buffer == NULL) { in php_xmlwriter_flush()
1918 if (buffer) { in php_xmlwriter_flush()
[all …]
/PHP-5.5/ext/xmlwriter/tests/
H A D001.phpt2 XMLWriter: libxml2 XML Writer, file buffer, flush
15 // Force to write and empty the buffer
H A D002.phpt15 // Force to write and empty the buffer
H A D003.phpt28 // Force to write and empty the buffer
H A D004.phpt2 XMLWriter: libxml2 XML Writer, file buffer, flush
19 // Force to write and empty the buffer
H A D005.phpt23 // Force to write and empty the buffer
H A D006.phpt19 // Force to write and empty the buffer
H A D007.phpt28 // 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 D011.phpt25 // Force to write and empty the buffer
H A D012.phpt27 // Force to write and empty the buffer
H A DOO_001.phpt2 XMLWriter: libxml2 XML Writer, file buffer, flush
16 // Force to write and empty the buffer
H A DOO_002.phpt15 // Force to write and empty the buffer
H A DOO_003.phpt30 // Force to write and empty the buffer
H A DOO_004.phpt2 XMLWriter: libxml2 XML Writer, file buffer, flush
20 // Force to write and empty the buffer
H A DOO_005.phpt23 // Force to write and empty the buffer
H A DOO_006.phpt20 // Force to write and empty the buffer
H A DOO_007.phpt29 // Force to write and empty the buffer
H A DOO_008.phpt25 // Force to write and empty the buffer
H A DOO_009.phpt33 // Force to write and empty the buffer
H A DOO_010.phpt26 // Force to write and empty the buffer
H A DOO_011.phpt28 // Force to write and empty the buffer
/PHP-5.5/ext/xsl/
H A Dphp_xsl.c309 char buffer[128]; in PHP_MINFO_FUNCTION() local
316 snprintf(buffer, 128, "%d.%d.%d", major, minor, subminor); in PHP_MINFO_FUNCTION()
317 php_info_print_table_row(2, "libxslt Version", buffer); in PHP_MINFO_FUNCTION()
321 snprintf(buffer, 128, "%d.%d.%d", major, minor, subminor); in PHP_MINFO_FUNCTION()
322 php_info_print_table_row(2, "libxslt compiled against libxml Version", buffer); in PHP_MINFO_FUNCTION()
/PHP-5.5/ext/zip/lib/
H A Dzip_source_deflate.c47 char buffer[BUFSIZE]; member
139 if ((n=zip_source_read(src, ctx->buffer, in compress_read()
140 sizeof(ctx->buffer))) < 0) { in compress_read()
151 ctx->zstr.next_in = (Bytef *)ctx->buffer; in compress_read()
213 if ((n=zip_source_read(src, ctx->buffer, in decompress_read()
214 sizeof(ctx->buffer))) < 0) { in decompress_read()
222 ctx->zstr.next_in = (Bytef *)ctx->buffer; in decompress_read()
330 if ((n=zip_source_read(src, ctx->buffer, sizeof(ctx->buffer))) < 0) in deflate_decompress()
336 ctx->zstr.next_in = (Bytef *)ctx->buffer; in deflate_decompress()

Completed in 34 milliseconds

12345678910>>...12