Searched refs:XMLNode (Results 1 - 4 of 4) sorted by relevance

/freebsd-13-stable/contrib/llvm-project/lldb/source/Host/common/
H A DXML.cpp66 XMLNode XMLDocument::GetRootElement(const char *required_name) {
69 XMLNode root_node(xmlDocGetRootElement(m_document));
79 return XMLNode();
92 #pragma mark-- XMLNode
94 XMLNode::XMLNode() : m_node(nullptr) {} function in class:XMLNode
96 XMLNode::XMLNode(XMLNodeImpl node) : m_node(node) {} function in class:XMLNode
98 XMLNode::~XMLNode() {}
[all...]
/freebsd-13-stable/contrib/llvm-project/lldb/include/lldb/Host/
H A DXML.h38 class XMLNode;
41 typedef std::function<bool(const XMLNode &node)> NodeCallback;
46 class XMLNode { class in namespace:lldb_private
48 XMLNode();
50 XMLNode(XMLNodeImpl node);
52 ~XMLNode();
73 XMLNode GetParent() const;
75 XMLNode GetSibling() const;
77 XMLNode GetChild() const;
85 XMLNode FindFirstChildElementWithNam
[all...]
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/
H A DProcessGDBRemote.cpp4282 bool ParseRegisters(XMLNode feature_node, GdbServerTargetInfo &target_info,
4291 &abi_sp](const XMLNode &reg_node) -> bool {
4485 std::vector<XMLNode> feature_nodes;
4488 XMLNode target_node = xml_document.GetRootElement("target");
4491 const XMLNode &node) -> bool {
4505 "group", [&target_info](const XMLNode &node) -> bool {
4532 XMLNode feature_node = xml_document.GetRootElement("feature");
4536 const XMLNode &node) -> bool {
4640 XMLNode root_element = doc.GetRootElement("library-list-svr4");
4654 "library", [log, &list](const XMLNode
[all...]
H A DGDBRemoteCommunicationClient.cpp1637 XMLNode map_node = xml_document.GetRootElement("memory-map");
1645 map_node.ForEachChildElement([this](const XMLNode &memory_node) -> bool {
1670 [&region](const XMLNode &prop_node) -> bool {

Completed in 63 milliseconds