Searched refs:file_fsmagic (Results 1 – 4 of 4) sorted by relevance
/PHP-7.1/ext/fileinfo/libmagic/ |
H A D | fsmagic.c | 97 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 | 373 switch (file_fsmagic(ms, inname, &sb, stream)) { in file_or_stream()
|
H A D | file.h | 431 protected int file_fsmagic(struct magic_set *, const char *, zend_stat_t *, php_stream *);
|
/PHP-7.1/ext/fileinfo/ |
H A D | libmagic.patch | 1508 -protected int file_fsmagic(struct magic_set *, const char *, struct stat *); 1509 +protected int file_fsmagic(struct magic_set *, const char *, zend_stat_t *, php_stream *); 1695 -file_fsmagic(struct magic_set *ms, const char *fn, struct stat *sb) 1696 +file_fsmagic(struct magic_set *ms, const char *fn, zend_stat_t *sb, php_stream *stream) 2623 - switch (file_fsmagic(ms, inname, &sb)) { 2627 + switch (file_fsmagic(ms, inname, &sb, stream)) {
|
Completed in 22 milliseconds