You can search for identifiers within the package.
in-package search v0.2.0
owee
Owee_elf.Symbol_table
type t
One or more ELF symbol tables, conjoined.
module Symbol : sig ... end
val symbols_enclosing_address : t -> address:Int64.t -> Symbol.t list
The symbols in the table whose value and size determine that they cover address.
address
val functions_enclosing_address : t -> address:Int64.t -> Symbol.t list
As for symbols_enclosing_address, but only returns function symbols.
symbols_enclosing_address
val iter : t -> f:(Symbol.t -> unit) -> unit
iter t ~f calls f on each symbol found in t.
iter t ~f
t