Home | History | Annotate | Download | only in bfd

Lines Matching defs:normal

946 	 This is done because any normal format will recognize any
947 normal archive, regardless of the format of the object files.
1590 const char *normal;
1615 normal = adjust_relative_path (filename, bfd_get_filename (abfd));
1617 normal = filename;
1621 total_namelen += strlen (normal) + 1;
1629 normal = normalize (abfd, bfd_get_filename (current));
1630 if (normal == NULL)
1633 thislen = strlen (normal);
1652 if (filename_ncmp (normal, hdr->ar_name, thislen) != 0
1657 didn't need to. Fix it to use normal format. */
1658 memcpy (hdr->ar_name, normal, thislen);
1683 const char *normal;
1701 normal = last_filename;
1704 normal = adjust_relative_path (filename, bfd_get_filename (abfd));
1706 normal = filename;
1710 normal = normalize (abfd, filename);
1711 if (normal == NULL)
1715 thislen = strlen (normal);
1722 if (normal == last_filename)
1729 memcpy (strptr, normal, thislen);
1772 const char *normal = normalize (abfd, bfd_get_filename (current));
1776 if (normal == NULL)
1779 for (len = 0; normal[len]; len++)
1780 if (normal[len] == ' ')
2256 const char *normal = normalize (current, current->filename);
2257 unsigned int thislen = strlen (normal);
2258 if (bfd_write (normal, thislen, arch) != thislen)