Lines Matching refs:text_length

38 static void php_ob_append(const char *text, uint text_length TSRMLS_DC);
40 static void php_ob_prepend(const char *text, uint text_length);
222 …ernal_output_handler(OG(active_ob_buffer).buffer, OG(active_ob_buffer).text_length, &final_buffer,… in php_end_ob_buffer()
240 ZVAL_STRINGL(orig_buffer, OG(active_ob_buffer).buffer, OG(active_ob_buffer).text_length, 1); in php_end_ob_buffer()
266 final_buffer_length = OG(active_ob_buffer).text_length; in php_end_ob_buffer()
326 OG(active_ob_buffer).text_length = 0; in php_end_ob_buffer()
406 static inline void php_ob_allocate(uint text_length TSRMLS_DC) in php_ob_allocate()
408 uint new_len = OG(active_ob_buffer).text_length + text_length; in php_ob_allocate()
419 OG(active_ob_buffer).text_length = new_len; in php_ob_allocate()
448 tmp_buf.text_length = 0; in php_ob_init_named()
607 static inline void php_ob_append(const char *text, uint text_length TSRMLS_DC) in php_ob_append()
612 original_ob_text_length=OG(active_ob_buffer).text_length; in php_ob_append()
614 php_ob_allocate(text_length TSRMLS_CC); in php_ob_append()
616 memcpy(target, text, text_length); in php_ob_append()
617 target[text_length]=0; in php_ob_append()
621 && OG(active_ob_buffer).text_length >= OG(active_ob_buffer).chunk_size) { in php_ob_append()
630 static inline void php_ob_prepend(const char *text, uint text_length)
635 php_ob_allocate(text_length TSRMLS_CC);
642 p[text_length] = *p;
644 memcpy(OG(ob_buffer), text, text_length);
645 OG(ob_buffer)[OG(active_ob_buffer).text_length]=0;
656 ZVAL_STRINGL(p, OG(active_ob_buffer).buffer, OG(active_ob_buffer).text_length, 1); in php_ob_get_buffer()
668 ZVAL_LONG(p, OG(active_ob_buffer).text_length); in php_ob_get_length()