Lines Matching defs:magic_set
447 struct magic_set { struct
448 struct mlist *mlist[MAGIC_SETS]; /* list of regular entries */
449 struct cont c;
450 struct out {
454 } o;
455 uint32_t offset; /* a copy of m->offset while we */
457 uint32_t eoffset; /* offset from end of file */
458 int error;
459 int flags; /* Control magic tests. */
460 int event_flags; /* Note things that happened. */
462 const char *file;
463 size_t line; /* current magic line number */
464 mode_t mode; /* copy of current stat mode */
467 struct {
472 } search;
476 union VALUETYPE ms_value; /* either number or string */
477 uint16_t indir_max;
478 uint16_t name_max;
479 uint16_t elf_shnum_max;
480 uint16_t elf_phnum_max;
481 uint16_t elf_notes_max;
482 uint16_t regex_max;
483 size_t bytes_max; /* number of bytes to read from file */
484 size_t encoding_max; /* bytes to look for encoding */
485 size_t elf_shsize_max;
518 file_protected struct magic_set *file_ms_alloc(int); argument