Lines Matching refs:sbuf
63 smart_string sbuf = {0}; in php_syslog() local
90 syslog(priority, "%.*s", (int)sbuf.len, sbuf.c); in php_syslog()
96 smart_string_appendc(&sbuf, c); in php_syslog()
98 smart_string_appendc(&sbuf, c); in php_syslog()
100 syslog(priority, "%.*s", (int)sbuf.len, sbuf.c); in php_syslog()
101 smart_string_reset(&sbuf); in php_syslog()
103 smart_string_appendc(&sbuf, c); in php_syslog()
107 smart_string_appendl(&sbuf, "\\x", 2); in php_syslog()
108 smart_string_appendc(&sbuf, xdigits[(c / 0x10)]); in php_syslog()
110 smart_string_appendc(&sbuf, xdigits[c]); in php_syslog()
115 smart_string_free(&sbuf); in php_syslog()