package owee

  1. Overview
  2. Docs
type t

One or more ELF symbol tables, conjoined.

module Symbol : sig ... end
val symbols_enclosing_address : t -> address:Stdlib.Int64.t -> Symbol.t list

The symbols in the table whose value and size determine that they cover address.

val functions_enclosing_address : t -> address:Stdlib.Int64.t -> Symbol.t list

As for symbols_enclosing_address, but only returns function symbols.

val iter : t -> f:(Symbol.t -> unit) -> unit

iter t ~f calls f on each symbol found in t.