Searched refs:file_buffer (Results 1 – 6 of 6) sorted by relevance
/PHP-8.3/ext/mysqlnd/ |
H A D | mysqlnd_debug.c | 55 char pid_buffer[10], time_buffer[30], file_buffer[200], in MYSQLND_METHOD() local 107 snprintf(file_buffer, sizeof(file_buffer) - 1, "%14s: ", file); in MYSQLND_METHOD() 108 file_buffer[sizeof(file_buffer) - 1 ] = '\0'; in MYSQLND_METHOD() 122 flags & MYSQLND_DEBUG_DUMP_FILE? file_buffer:"", in MYSQLND_METHOD() 152 char pid_buffer[10], time_buffer[30], file_buffer[200], in MYSQLND_METHOD() local 204 snprintf(file_buffer, sizeof(file_buffer) - 1, "%14s: ", file); in MYSQLND_METHOD() 205 file_buffer[sizeof(file_buffer) - 1 ] = '\0'; in MYSQLND_METHOD() 223 flags & MYSQLND_DEBUG_DUMP_FILE? file_buffer:"", in MYSQLND_METHOD()
|
/PHP-8.3/ext/fileinfo/libmagic/ |
H A D | magic.c | 257 if (file_buffer(ms, stream, &sb, inname, buf, CAST(size_t, nbytes)) == -1) in file_or_stream() 282 if (file_buffer(ms, NULL, NULL, NULL, buf, nb) == -1) { in magic_buffer()
|
H A D | compress.c | 303 prv = file_buffer(ms, NULL, NULL, name, newbuf, nsz); in file_zmagic() 320 if (file_buffer(ms, NULL, NULL, NULL, buf, nbytes) == -1) { in file_zmagic()
|
H A D | file.h | 508 protected int file_buffer(struct magic_set *, php_stream *, zend_stat_t *, const char *, const void…
|
H A D | funcs.c | 317 file_buffer(struct magic_set *ms, php_stream *stream, zend_stat_t *st, in file_buffer() function
|
/PHP-8.3/ext/fileinfo/ |
H A D | libmagic.patch | 1247 - prv = file_buffer(ms, -1, NULL, name, newbuf, nsz); 1248 + prv = file_buffer(ms, NULL, NULL, name, newbuf, nsz); 1253 * XXX: If file_buffer fails here, we overwrite 1256 - if (file_buffer(ms, -1, NULL, NULL, buf, nbytes) == -1) { 1257 + if (file_buffer(ms, NULL, NULL, NULL, buf, nbytes) == -1) { 1475 -protected int file_buffer(struct magic_set *, int, struct stat *, const char *, 1937 -file_buffer(struct magic_set *ms, int fd, struct stat *st, 1939 +file_buffer(struct magic_set *ms, php_stream *stream, zend_stat_t *st, 2626 + if (file_buffer(ms, stream, &sb, inname, buf, CAST(size_t, nbytes)) == -1) 2646 - if (file_buffer(ms, -1, NULL, NULL, buf, nb) == -1) { [all …]
|
Completed in 39 milliseconds