Searched refs:sectidx (Results 1 – 1 of 1) sorted by relevance
/reactos/dll/win32/dbghelp/ |
H A D | macho_module.c | 927 static BOOL macho_sect_is_code(struct macho_file_map* fmap, unsigned char sectidx) in macho_sect_is_code() argument 931 TRACE("(%p/%p, %u)\n", fmap, fmap->handle, sectidx); in macho_sect_is_code() 933 if (!sectidx) return FALSE; in macho_sect_is_code() 935 sectidx--; /* convert from 1-based to 0-based */ in macho_sect_is_code() 936 if (sectidx >= fmap->num_sections || fmap->sect[sectidx].ignored) return FALSE; in macho_sect_is_code() 938 ret = (!(fmap->sect[sectidx].section.flags & MACHO_SECTION_TYPE) && in macho_sect_is_code() 939 …(fmap->sect[sectidx].section.flags & (MACHO_S_ATTR_PURE_INSTRUCTIONS | MACHO_S_ATTR_SOME_INSTRUCTI… in macho_sect_is_code() 970 BOOL is_public, BOOL is_global, unsigned char sectidx, in macho_stabs_def_cb() argument 977 debugstr_a(name), offset, is_public, is_global, sectidx, in macho_stabs_def_cb() 986 ste->is_code = !!macho_sect_is_code(mdi->fmap, sectidx); in macho_stabs_def_cb()
|