Symbols returns a list of symbols in the object file. If r is not nil, Symbols restricts the list to symbols with names matching the regular expression. If addr is not zero, Symbols restricts the list to symbols containing that address.
(r *regexp.Regexp, addr uint64)
| 180 | // If addr is not zero, Symbols restricts the list to symbols |
| 181 | // containing that address. |
| 182 | Symbols(r *regexp.Regexp, addr uint64) ([]*Sym, error) |
| 183 | |
| 184 | // Close closes the file, releasing associated resources. |
| 185 | Close() error |
no outgoing calls