Searched refs:sbuf (Results 1 – 7 of 7) sorted by relevance
/PHP-8.2/main/ |
H A D | php_syslog.c | 37 smart_string sbuf = {0}; in php_syslog_str() local 51 smart_string_appendc(&sbuf, c); in php_syslog_str() 53 smart_string_appendc(&sbuf, c); in php_syslog_str() 56 syslog(priority, "%.*s", (int)sbuf.len, sbuf.c); in php_syslog_str() 57 smart_string_reset(&sbuf); in php_syslog_str() 59 smart_string_appendc(&sbuf, c); in php_syslog_str() 63 smart_string_appendl(&sbuf, "\\x", 2); in php_syslog_str() 64 smart_string_appendc(&sbuf, xdigits[c >> 4]); in php_syslog_str() 65 smart_string_appendc(&sbuf, xdigits[c & 0xf]); in php_syslog_str() 70 syslog(priority, "%.*s", (int)sbuf.len, sbuf.c); in php_syslog_str() [all …]
|
/PHP-8.2/ext/session/ |
H A D | mod_files.c | 156 struct stat sbuf = {0}; in ps_files_open() local 202 …if (zend_fstat(data->fd, &sbuf) || (sbuf.st_uid != 0 && sbuf.st_uid != getuid() && sbuf.st_uid != … in ps_files_open() 284 zend_stat_t sbuf = {0}; in ps_files_cleanup_dir() local 321 if (VCWD_STAT(buf, &sbuf) == 0 && in ps_files_cleanup_dir() 338 zend_stat_t sbuf = {0}; in ps_files_key_exists() local 343 if (VCWD_STAT(buf, &sbuf)) { in ps_files_key_exists() 470 zend_stat_t sbuf = {0}; in PS_READ_FUNC() local 478 if (zend_fstat(data->fd, &sbuf)) { in PS_READ_FUNC() 482 data->st_size = sbuf.st_size; in PS_READ_FUNC() 484 if (sbuf.st_size == 0) { in PS_READ_FUNC() [all …]
|
/PHP-8.2/sapi/fpm/fpm/ |
H A D | zlog.c | 705 char sbuf[1024]; in zlog_stream_prefix_ex() local 707 len = zlog_buf_prefix(function, line, stream->flags, sbuf, sizeof(sbuf), stream->use_syslog); in zlog_stream_prefix_ex() 708 written = zlog_stream_direct_write(stream, sbuf, MIN(len, sizeof(sbuf))); in zlog_stream_prefix_ex() 723 char sbuf[1024]; in zlog_stream_vformat() local 726 len = vsnprintf(sbuf, 1024, fmt, args); in zlog_stream_vformat() 728 return zlog_stream_str(stream, sbuf, len); in zlog_stream_vformat()
|
/PHP-8.2/ext/fileinfo/libmagic/ |
H A D | softmagic.c | 587 char buf[128], tbuf[26], sbuf[512], ebuf[512]; in mprint() local 656 file_printable(sbuf, sizeof(sbuf), m->value.s, in mprint() 674 file_printable(sbuf, sizeof(sbuf), str, in mprint() 789 file_printable(sbuf, sizeof(sbuf), scp, ms->search.rm_len)); in mprint() 816 file_printable(sbuf, sizeof(sbuf), ms->ms_value.s, in mprint()
|
H A D | cdf.c | 1545 char tbuf[64], sbuf[256]; in cdf_dump_catalog() local 1552 cdf_u16tos8(sbuf, ce[i].ce_namlen, ce[i].ce_name), in cdf_dump_catalog()
|
/PHP-8.2/ext/snmp/ |
H A D | snmp.c | 240 char sbuf[512]; in php_snmp_getvalue() local 241 char *buf = &(sbuf[0]); in php_snmp_getvalue() 243 int buflen = sizeof(sbuf) - 1; in php_snmp_getvalue()
|
/PHP-8.2/ext/fileinfo/ |
H A D | libmagic.patch | 1269 cdf_u16tos8(sbuf, ce[i].ce_namlen, ce[i].ce_name),
|
Completed in 48 milliseconds