Lines Matching full:asymbol
610 (bfd *abfd, asection *sec, arelent **loc, asymbol **syms);
884 bfd_boolean, asymbol **);
2019 applications though the `asymbol' structure. When the application
2034 with a table of pointers to pointers to `asymbol's. This allows
2043 * typedef asymbol::
2057 asymbol **symbol_table;
2102 asymbol *ptrs[2];
2103 asymbol *new;
2131 File: bfd.info, Node: Mini Symbols, Next: typedef asymbol, Prev: Writing Symbols, Up: Symbols
2149 `bfd_make_empty_symbol', and return a `asymbol' structure. The return
2154 File: bfd.info, Node: typedef asymbol, Next: symbol handling functions, Prev: Mini Symbols, Up: Symbols
2156 2.7.4 typedef asymbol
2159 An `asymbol' has the form:
2284 asymbol;
2287 File: bfd.info, Node: symbol handling functions, Prev: typedef asymbol, Up: Symbols
2307 bfd_boolean bfd_is_local_label (bfd *abfd, asymbol *sym);
2328 bfd_boolean bfd_is_target_special_symbol (bfd *abfd, asymbol *sym);
2351 (bfd *abfd, asymbol **location, unsigned int count);
2360 void bfd_print_symbol_vandf (bfd *abfd, void *file, asymbol *symbol);
2368 Create a new `asymbol' structure for the BFD ABFD and return a pointer
2372 information surrounding the `asymbol'. Building your own `asymbol' and
2382 asymbol *_bfd_generic_make_empty_symbol (bfd *);
2384 Create a new `asymbol' structure for the BFD ABFD and return a pointer
2392 Create a new `asymbol' structure for the BFD ABFD, to be used as a
2405 int bfd_decode_symclass (asymbol *symbol);
2425 void bfd_symbol_info (asymbol *symbol, symbol_info *ret);
2432 (bfd *ibfd, asymbol *isym, bfd *obfd, asymbol *osym);
5048 asymbol **symbols);
5362 (bfd *, asymbol *, bfd *, asymbol *);
5439 bfd_boolean (*_bfd_is_target_special_symbol) (bfd *, asymbol *);
5452 asymbol * (*_bfd_make_debug_symbol)
5460 asymbol * (*_minisymbol_to_symbol)
5461 (bfd *, bfd_boolean, const void *, asymbol *);
6906 generic `asymbol' structures.
7719 various flags to set in the `asymbol'. *Note Symbols::. The generated
7729 lose any debugging information. The `asymbol' structure remembers the
7753 the `asymbol''s `asection' *Note Sections::.
7760 into the symbol table of the asymbol.
7771 The hidden information for an `asymbol' is described in a
7811 /* Each canonical asymbol really looks like this: */
7816 asymbol symbol;
10261 Node: typedef asymbol84501