Home
last modified time | relevance | path

Searched refs:out_buffer (Results 1 – 3 of 3) sorted by relevance

/PHP-5.6/ext/iconv/
H A Diconv.c558 char *out_buffer, *out_p; in php_iconv_string() local
584 out_p = out_buffer; in php_iconv_string()
594 efree(out_buffer); in php_iconv_string()
599 size_t pos = out_p - out_buffer; in php_iconv_string()
600 out_buffer = (char *) safe_erealloc(out_buffer, out_size, 1, 8); in php_iconv_string()
601 out_p = out_buffer+pos; in php_iconv_string()
610 efree(out_buffer); in php_iconv_string()
615 out_buffer[*out_len] = '\0'; in php_iconv_string()
616 *out = out_buffer; in php_iconv_string()
2496 if (out_buffer != NULL) { in PHP_NAMED_FUNCTION()
[all …]
/PHP-5.6/ext/xmlwriter/
H A Dphp_xmlwriter.c1758 xmlOutputBufferPtr out_buffer; in PHP_FUNCTION() local
1793 out_buffer = xmlOutputBufferCreateIO(php_xmlwriter_streams_IO_write, in PHP_FUNCTION()
1796 if (out_buffer == NULL) { in PHP_FUNCTION()
1800 ptr = xmlNewTextWriter(out_buffer); in PHP_FUNCTION()
1813 intern->uri_output = out_buffer; in PHP_FUNCTION()
/PHP-5.6/ext/openssl/
H A Dopenssl.c4050 unsigned char *out_buffer; in PHP_FUNCTION() local
4077 out_buffer = emalloc(key_length + 1); in PHP_FUNCTION()
4078 out_buffer[key_length] = '\0'; in PHP_FUNCTION()
4080 … password_len, (unsigned char *)salt, salt_len, iterations, digest, key_length, out_buffer) == 1) { in PHP_FUNCTION()
4081 RETVAL_STRINGL((char *)out_buffer, key_length, 0); in PHP_FUNCTION()
4083 efree(out_buffer); in PHP_FUNCTION()

Completed in 31 milliseconds