Home | History | Annotate | Download | only in info

Lines Matching full:asymbol

612         (bfd *abfd, asection *sec, arelent **loc, asymbol **syms);
886 bfd_boolean, asymbol **);
2021 applications though the `asymbol' structure. When the application
2036 with a table of pointers to pointers to `asymbol's. This allows
2045 * typedef asymbol::
2059 asymbol **symbol_table;
2104 asymbol *ptrs[2];
2105 asymbol *new;
2133 File: bfd.info, Node: Mini Symbols, Next: typedef asymbol, Prev: Writing Symbols, Up: Symbols
2151 `bfd_make_empty_symbol', and return a `asymbol' structure. The return
2156 File: bfd.info, Node: typedef asymbol, Next: symbol handling functions, Prev: Mini Symbols, Up: Symbols
2158 2.7.4 typedef asymbol
2161 An `asymbol' has the form:
2286 asymbol;
2289 File: bfd.info, Node: symbol handling functions, Prev: typedef asymbol, Up: Symbols
2309 bfd_boolean bfd_is_local_label (bfd *abfd, asymbol *sym);
2330 bfd_boolean bfd_is_target_special_symbol (bfd *abfd, asymbol *sym);
2353 (bfd *abfd, asymbol **location, unsigned int count);
2362 void bfd_print_symbol_vandf (bfd *abfd, void *file, asymbol *symbol);
2370 Create a new `asymbol' structure for the BFD ABFD and return a pointer
2374 information surrounding the `asymbol'. Building your own `asymbol' and
2384 asymbol *_bfd_generic_make_empty_symbol (bfd *);
2386 Create a new `asymbol' structure for the BFD ABFD and return a pointer
2394 Create a new `asymbol' structure for the BFD ABFD, to be used as a
2407 int bfd_decode_symclass (asymbol *symbol);
2427 void bfd_symbol_info (asymbol *symbol, symbol_info *ret);
2434 (bfd *ibfd, asymbol *isym, bfd *obfd, asymbol *osym);
5050 asymbol **symbols);
5364 (bfd *, asymbol *, bfd *, asymbol *);
5441 bfd_boolean (*_bfd_is_target_special_symbol) (bfd *, asymbol *);
5454 asymbol * (*_bfd_make_debug_symbol)
5462 asymbol * (*_minisymbol_to_symbol)
5463 (bfd *, bfd_boolean, const void *, asymbol *);
6908 generic `asymbol' structures.
7721 various flags to set in the `asymbol'. *Note Symbols::. The generated
7731 lose any debugging information. The `asymbol' structure remembers the
7755 the `asymbol''s `asection' *Note Sections::.
7762 into the symbol table of the asymbol.
7773 The hidden information for an `asymbol' is described in a
7813 /* Each canonical asymbol really looks like this: */
7818 asymbol symbol;
10263 Node: typedef asymbol84591