Lines Matching refs:needed
91 read_elf_needed_from_input(reader& rdr, vector<string>& needed);
105 /// information needed during the de-serialization, but that does not
1204 // Read the needed element
1205 vector<string> needed;
1206 read_elf_needed_from_input(*this, needed);
1207 if (!needed.empty())
1208 corp.set_needed(needed);
1851 /// From an "elf-needed" XML_ELEMENT node, build a vector of strings
1852 /// representing the vector of the dependencies needed by a given
1855 /// @param node the XML_ELEMENT node of name "elf-needed".
1857 /// @param needed the output vector of string to populate with the
1862 build_needed(xmlNode* node, vector<string>& needed)
1864 if (!node || !xmlStrEqual(node->name,BAD_CAST("elf-needed")))
1879 needed.push_back(name);
1886 /// "elf-needed". Then read the sub-tree to made of that node and
1887 /// extracts a vector of needed dependencies name from it.
1891 /// @param needed the resulting vector of dependency names.
1896 vector<string>& needed)
1915 BAD_CAST("elf-needed")))
1928 if (!xmlStrEqual(n->name, BAD_CAST("elf-needed")))
1938 result = build_needed(node, needed);