Lines Matching defs:library
106 // executable since the LLDB shared library only exports stuff in the lldb
2278 } else if (key.compare("library") == 0) {
4905 // request the loaded library list
4918 XMLNode root_element = doc.GetRootElement("library-list-svr4");
4922 "Error finding library-list-svr4 xml element");
4931 "library", [log, &list](const XMLNode &library) -> bool {
4935 library.ForEachAttribute(
4959 return true; // Keep iterating over all properties of "library"
4981 return true; // Keep iterating over all "library" elements in the root
4990 // request the loaded library list
5003 XMLNode root_element = doc.GetRootElement("library-list");
5006 "Error finding library-list xml element");
5010 "library", [log, &list](const XMLNode &library) -> bool {
5013 std::string name = library.GetAttributeValue("name");
5016 // The base address of a given library will be the address of its
5020 library.FindFirstChildElementWithName("section");
5041 return true; // Keep iterating over all "library" elements in the root