Home | History | Annotate | Download | only in macho

Lines Matching refs:sectname

266     /*@only@*/ char *sectname;  /* section name in file */
745 strncpy((char *)localbuf, msd->sectname, 16);
1267 const char *sectname = yasm_section_get_name(sect);
1275 data->sectname = NULL;
1284 sym = yasm_symtab_define_label(object->symtab, sectname,
1301 msd->sectname = yasm__xstrdup("__text");
1322 const char *sectname;
1409 sectname = yasm_vp_string(vp);
1410 if (!sectname)
1416 if (yasm__strcasecmp(sectname, section_name_translation[i].in) == 0)
1423 /* Treat as SEGNAME, SECTNAME */
1424 if (strlen(sectname) > 16)
1427 data.f_segname = yasm__xstrndup(sectname, 16);
1435 sectname = s;
1439 if (strlen(sectname) > 16)
1442 f_sectname = yasm__xstrndup(sectname, 16);
1484 /* Build a unique sectname from f_segname and f_sectname. */
1497 msd->sectname = f_sectname;
1526 yasm_xfree(msd->sectname);