Home
last modified time | relevance | path

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

/PHP-5.5/ext/iconv/
H A Diconv.c493 char *out_buffer, *out_p; in php_iconv_string() local
519 out_p = out_buffer; in php_iconv_string()
529 efree(out_buffer); in php_iconv_string()
534 size_t pos = out_p - out_buffer; in php_iconv_string()
535 out_buffer = (char *) safe_erealloc(out_buffer, out_size, 1, 8); in php_iconv_string()
536 out_p = out_buffer+pos; in php_iconv_string()
545 efree(out_buffer); in php_iconv_string()
550 out_buffer[*out_len] = '\0'; in php_iconv_string()
551 *out = out_buffer; in php_iconv_string()
2431 if (out_buffer != NULL) { in PHP_NAMED_FUNCTION()
[all …]
/PHP-5.5/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.5/ext/openssl/
H A Dopenssl.c3485 unsigned char *out_buffer; in PHP_FUNCTION() local
3512 out_buffer = emalloc(key_length + 1); in PHP_FUNCTION()
3513 out_buffer[key_length] = '\0'; in PHP_FUNCTION()
3515 … password_len, (unsigned char *)salt, salt_len, iterations, digest, key_length, out_buffer) == 1) { in PHP_FUNCTION()
3516 RETVAL_STRINGL((char *)out_buffer, key_length, 0); in PHP_FUNCTION()
3518 efree(out_buffer); in PHP_FUNCTION()

Completed in 37 milliseconds