Searched refs:smart_string (Results 1 – 10 of 10) sorted by relevance
/PHP-8.0/Zend/ |
H A D | zend_smart_string.h | 33 smart_string_appendl_ex((str), ((smart_string *)(src))->c, \ 34 ((smart_string *)(src))->len, (what)); 51 ZEND_API void ZEND_FASTCALL _smart_string_alloc_persistent(smart_string *str, size_t len); 52 ZEND_API void ZEND_FASTCALL _smart_string_alloc(smart_string *str, size_t len); 54 static zend_always_inline size_t smart_string_alloc(smart_string *str, size_t len, zend_bool persis… in smart_string_alloc() 65 static zend_always_inline void smart_string_free_ex(smart_string *str, zend_bool persistent) { in smart_string_free_ex() 73 static zend_always_inline void smart_string_0(smart_string *str) { in smart_string_0() 79 static zend_always_inline void smart_string_appendc_ex(smart_string *dest, char ch, zend_bool persi… in smart_string_appendc_ex() 91 static zend_always_inline void smart_string_append_long_ex(smart_string *dest, zend_long num, zend_… in smart_string_append_long_ex() 103 static zend_always_inline void smart_string_setl(smart_string *dest, char *src, size_t len) { in smart_string_setl() [all …]
|
H A D | zend_smart_string_public.h | 27 } smart_string; typedef
|
H A D | zend_smart_str.c | 127 ZEND_API void ZEND_FASTCALL _smart_string_alloc_persistent(smart_string *str, size_t len) in _smart_string_alloc_persistent() 147 ZEND_API void ZEND_FASTCALL _smart_string_alloc(smart_string *str, size_t len) in _smart_string_alloc()
|
H A D | zend.h | 199 void (*printf_to_smart_string_function)(smart_string *buf, const char *format, va_list ap); 287 extern void (*zend_printf_to_smart_string)(smart_string *buf, const char *format, va_list ap);
|
H A D | zend.c | 80 void (*zend_printf_to_smart_string)(smart_string *buf, const char *format, va_list ap); 198 smart_string buf = {0}; in ZEND_INI_END()
|
/PHP-8.0/main/ |
H A D | spprintf.h | 25 PHPAPI void php_printf_to_smart_string(smart_string *buf, const char *format, va_list ap);
|
H A D | php_syslog.c | 71 smart_string fbuf = {0}; in php_syslog() 72 smart_string sbuf = {0}; in php_syslog()
|
H A D | spprintf.c | 116 smart_string_appendc((smart_string *)(xbuf), (ch)); \ 124 smart_string_appendl((smart_string *)(xbuf), (str), (len)); \ 132 smart_string_alloc(((smart_string *)(xbuf)), (count), 0); \ 133 memset(((smart_string *)(xbuf))->c + ((smart_string *)(xbuf))->len, (ch), (count)); \ 134 ((smart_string *)(xbuf))->len += (count); \ 703 …*(va_arg(ap, int *)) = is_char? (int)((smart_string *)xbuf)->len : (int)ZSTR_LEN(((smart_str *)xbu… in xbuf_format_converter() 794 PHPAPI void php_printf_to_smart_string(smart_string *buf, const char *format, va_list ap) /* {{{ */ in php_printf_to_smart_string()
|
H A D | rfc1867.c | 398 smart_string buf_value = {0}; in multipart_buffer_headers()
|
/PHP-8.0/ext/standard/ |
H A D | proc_open.c | 488 static void append_backslashes(smart_string *str, size_t num_bs) in append_backslashes() 496 static void append_win_escaped_arg(smart_string *str, char *arg) in append_win_escaped_arg() 521 smart_string str = {0}; in create_win_command_from_args()
|
Completed in 56 milliseconds