+

+ The Formats module contains the code for + handling various types of data formats that + LLDB needs to work with. This includes + serialization and deserialization code for + all kinds of textual and binary formats, + ranging from the contents of the linux + /proc/PID/maps file, to windows minidump + files. The goal of this library is to present + the data in an easily accessible fashion. + However, it does not connect this data to + higher level lldb concepts (Targets, Modules, + ...) -- that's the job of individual plugins. + The goal of this is so that another + application (or lldb-server) can use the + (de)serialization code from this library + without depending on the lldb object model, + or being constrained by it. +

+