Searched refs:php_output_write (Results 1 – 5 of 5) sorted by relevance
/php-src/main/ |
H A D | php_output.h | 157 #define PHPWRITE(str, str_len) php_output_write((str), (str_len)) 160 #define PUTC(c) php_output_write((const char *) &(c), 1) 165 php_output_write(__str, strlen(__str)); \ 203 PHPAPI size_t php_output_write(const char *str, size_t len);
|
H A D | output.c | 237 PHPAPI size_t php_output_write(const char *str, size_t len) in php_output_write() function 261 php_output_write(context.out.data, context.out.used); in php_output_flush() 1239 php_output_write(context.out.data, context.out.used); in php_output_stack_pop()
|
H A D | main.c | 2170 zuf.write_function = php_output_write; in php_module_startup()
|
/php-src/ext/zend_test/ |
H A D | iterators.c | 22 #define DUMP(s) php_output_write((s), sizeof((s)) - 1)
|
/php-src/ext/standard/ |
H A D | info.c | 60 written = php_output_write(ZSTR_VAL(new_str), ZSTR_LEN(new_str)); in php_info_print_html_esc() 76 written = php_output_write(buf, len); in php_info_printf() 84 return php_output_write(str, strlen(str)); in php_info_print()
|
Completed in 18 milliseconds