Lines Matching refs:erase

37 …t initial_size, uint block_size, zval *output_handler, uint chunk_size, zend_bool erase TSRMLS_DC);
137 PHPAPI int php_start_ob_buffer(zval *output_handler, uint chunk_size, zend_bool erase TSRMLS_DC) in php_start_ob_buffer()
161 return php_ob_init(initial_size, block_size, output_handler, chunk_size, erase TSRMLS_CC); in php_start_ob_buffer()
167 …_start_ob_buffer_named(const char *output_handler_name, uint chunk_size, zend_bool erase TSRMLS_DC) in php_start_ob_buffer_named()
176 result = php_start_ob_buffer(output_handler, chunk_size, erase TSRMLS_CC); in php_start_ob_buffer_named()
383 …er_func_t internal_output_handler, uint buffer_size, char *handler_name, zend_bool erase TSRMLS_DC) in php_ob_set_internal_handler()
386 php_start_ob_buffer(NULL, buffer_size, erase TSRMLS_CC); in php_ob_set_internal_handler()
396 OG(active_ob_buffer).erase = erase; in php_ob_set_internal_handler()
437 …t block_size, char *handler_name, zval *output_handler, uint chunk_size, zend_bool erase TSRMLS_DC) in php_ob_init_named()
456 tmp_buf.erase = erase; in php_ob_init_named()
492 …nt initial_size, uint block_size, zval *output_handler, uint chunk_size, zend_bool erase TSRMLS_DC) in php_ob_init()
510 …init_named(initial_size, block_size, next_handler_name, handler_zval, chunk_size, erase TSRMLS_CC); in php_ob_init()
522 …p_ob_init_named(initial_size, block_size, handler_name, handler_zval, chunk_size, erase TSRMLS_CC); in php_ob_init()
533 …ob_init_named(initial_size, block_size, handler_name, output_handler, chunk_size, erase TSRMLS_CC); in php_ob_init()
540 result = php_ob_init(initial_size, block_size, *tmp, chunk_size, erase TSRMLS_CC); in php_ob_init()
552 …ob_init_named(initial_size, block_size, handler_name, output_handler, chunk_size, erase TSRMLS_CC); in php_ob_init()
560 …b_init_named(initial_size, block_size, OB_DEFAULT_HANDLER_NAME, NULL, chunk_size, erase TSRMLS_CC); in php_ob_init()
756 add_assoc_bool(elem, "del", ob_buffer->erase); in php_ob_buffer_status()
773 zend_bool erase = 1; in PHP_FUNCTION() local
775 …if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "|z/lb", &output_handler, &chunk_size, &erase in PHP_FUNCTION()
783 if (php_start_ob_buffer(output_handler, chunk_size, erase TSRMLS_CC) == FAILURE) { in PHP_FUNCTION()
803 if (!OG(active_ob_buffer).status && !OG(active_ob_buffer).erase) { in PHP_FUNCTION()
826 if (!OG(active_ob_buffer).status && !OG(active_ob_buffer).erase) { in PHP_FUNCTION()
849 if (OG(ob_nesting_level) && !OG(active_ob_buffer).status && !OG(active_ob_buffer).erase) { in PHP_FUNCTION()
872 if (OG(ob_nesting_level) && !OG(active_ob_buffer).status && !OG(active_ob_buffer).erase) { in PHP_FUNCTION()
900 if (OG(ob_nesting_level) && !OG(active_ob_buffer).status && !OG(active_ob_buffer).erase) { in PHP_FUNCTION()
927 if (OG(ob_nesting_level) && !OG(active_ob_buffer).status && !OG(active_ob_buffer).erase) { in PHP_FUNCTION()
1024 add_assoc_bool(return_value, "del", OG(active_ob_buffer).erase); in PHP_FUNCTION()