Lines Matching defs:library
106 // executable since the LLDB shared library only exports stuff in the lldb
2321 } else if (key.compare("library") == 0) {
4968 // request the loaded library list
4981 XMLNode root_element = doc.GetRootElement("library-list-svr4");
4985 "Error finding library-list-svr4 xml element");
4994 "library", [log, &list](const XMLNode &library) -> bool {
4998 library.ForEachAttribute(
5022 return true; // Keep iterating over all properties of "library"
5044 return true; // Keep iterating over all "library" elements in the root
5053 // request the loaded library list
5066 XMLNode root_element = doc.GetRootElement("library-list");
5069 "Error finding library-list xml element");
5073 "library", [log, &list](const XMLNode &library) -> bool {
5076 std::string name = library.GetAttributeValue("name");
5079 // The base address of a given library will be the address of its
5083 library.FindFirstChildElementWithName("section");
5104 return true; // Keep iterating over all "library" elements in the root