Searched refs:sbuf (Results 1 – 7 of 7) sorted by relevance
/PHP-8.1/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.1/ext/session/ |
H A D | mod_files.c | 158 struct stat sbuf; in ps_files_open() local 204 …if (zend_fstat(data->fd, &sbuf) || (sbuf.st_uid != 0 && sbuf.st_uid != getuid() && sbuf.st_uid != … in ps_files_open() 286 zend_stat_t sbuf; in ps_files_cleanup_dir() local 326 if (VCWD_STAT(buf, &sbuf) == 0 && in ps_files_cleanup_dir() 343 zend_stat_t sbuf; in ps_files_key_exists() local 348 if (VCWD_STAT(buf, &sbuf)) { in ps_files_key_exists() 476 zend_stat_t sbuf; in PS_READ_FUNC() local 484 if (zend_fstat(data->fd, &sbuf)) { in PS_READ_FUNC() 488 data->st_size = sbuf.st_size; in PS_READ_FUNC() 490 if (sbuf.st_size == 0) { in PS_READ_FUNC() [all …]
|
/PHP-8.1/sapi/fpm/fpm/ |
H A D | zlog.c | 696 char sbuf[1024]; in zlog_stream_prefix_ex() local 698 len = zlog_buf_prefix(function, line, stream->flags, sbuf, 1024, stream->use_syslog); in zlog_stream_prefix_ex() 699 written = zlog_stream_direct_write(stream, sbuf, len); in zlog_stream_prefix_ex() 714 char sbuf[1024]; in zlog_stream_vformat() local 717 len = vsnprintf(sbuf, 1024, fmt, args); in zlog_stream_vformat() 719 return zlog_stream_str(stream, sbuf, len); in zlog_stream_vformat()
|
/PHP-8.1/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.1/ext/snmp/ |
H A D | snmp.c | 260 char sbuf[512]; in php_snmp_getvalue() local 261 char *buf = &(sbuf[0]); in php_snmp_getvalue() 263 int buflen = sizeof(sbuf) - 1; in php_snmp_getvalue()
|
/PHP-8.1/ext/fileinfo/ |
H A D | libmagic.patch | 1242 cdf_u16tos8(sbuf, ce[i].ce_namlen, ce[i].ce_name),
|
Completed in 67 milliseconds