Lines Matching refs:current

1237   bfd *current;
1243 for (current = abfd->archive_head;
1244 current != NULL;
1245 current = current->archive_next)
1250 normal = normalize (current, current->filename);
1272 struct ar_hdr *hdr = arch_hdr (current);
1275 && hdr->ar_name[thislen] != ar_padchar (current)))
1282 hdr->ar_name[thislen] = ar_padchar (current);
1297 for (current = abfd->archive_head;
1298 current != NULL;
1299 current = current->archive_next)
1304 normal = normalize (current, current->filename);
1314 struct ar_hdr *hdr = arch_hdr (current);
1323 hdr->ar_name[0] = ar_padchar (current);
1638 bfd *current;
1651 for (current = arch->archive_head;
1652 current != NULL;
1653 current = current->archive_next)
1660 if (bfd_write_p (current))
1665 if (!current->arelt_data)
1667 current->arelt_data =
1668 bfd_ar_hdr_from_filesystem (arch, current->filename, current);
1669 if (!current->arelt_data)
1674 (arch, current->filename, (char *) arch_hdr (current)));
1679 if ((bfd_check_format (current, bfd_object)))
1721 for (current = arch->archive_head;
1722 current != NULL;
1723 current = current->archive_next)
1726 unsigned int remaining = arelt_size (current);
1727 struct ar_hdr *hdr = arch_hdr (current);
1733 if (bfd_seek (current, (file_ptr) 0, SEEK_SET) != 0)
1741 if (bfd_bread (buffer, amt, current) != amt)
1751 if ((arelt_size (current) % 2) == 1)
1780 bfd_set_error (bfd_error_on_input, current, bfd_get_error ());
1791 bfd *current;
1824 for (current = arch->archive_head;
1825 current != NULL;
1826 current = current->archive_next, elt_no++)
1828 if (bfd_check_format (current, bfd_object)
1829 && (bfd_get_file_flags (current) & HAS_SYMS) != 0)
1835 storage = bfd_get_symtab_upper_bound (current);
1850 symcount = bfd_canonicalize_symtab (current, syms);
1891 map[orl_count].u.abfd = current;
1902 if (! bfd_free_cached_info (current))
1944 bfd *current = arch->archive_head;
1945 bfd *last_elt = current; /* Last element arch seen. */
1981 firstreal += arelt_size (current) + sizeof (struct ar_hdr);
1983 current = current->archive_next;
1985 while (current != map[count].u.abfd);
1988 last_elt = current;
2097 bfd *current = arch->archive_head;
2137 current = arch->archive_head;
2139 while (current != NULL && count < symbol_count)
2144 while (count < symbol_count && map[count].u.abfd == current)
2151 archive_member_file_ptr += arelt_size (current) + sizeof (struct ar_hdr);
2154 current = current->archive_next;