Searched refs:file_fsmagic (Results 1 – 4 of 4) sorted by relevance
/PHP-7.3/ext/fileinfo/libmagic/ |
H A D | fsmagic.c | 87 file_fsmagic(struct magic_set *ms, const char *fn, zend_stat_t *sb, php_stream *stream) in file_fsmagic() function
|
H A D | magic.c | 248 switch (file_fsmagic(ms, inname, &sb, stream)) { in file_or_stream()
|
H A D | file.h | 453 protected int file_fsmagic(struct magic_set *, const char *, zend_stat_t *, php_stream *);
|
/PHP-7.3/ext/fileinfo/ |
H A D | libmagic.patch | 2281 -protected int file_fsmagic(struct magic_set *, const char *, struct stat *); 2282 +protected int file_fsmagic(struct magic_set *, const char *, zend_stat_t *, php_stream *); 2502 -file_fsmagic(struct magic_set *ms, const char *fn, struct stat *sb) 2503 +file_fsmagic(struct magic_set *ms, const char *fn, zend_stat_t *sb, php_stream *stream) 3523 - switch (file_fsmagic(ms, inname, &sb)) { 3524 + switch (file_fsmagic(ms, inname, &sb, stream)) {
|
Completed in 20 milliseconds