Home
last modified time | relevance | path

Searched refs:VendorNdk (Results 1 – 9 of 9) sorted by relevance

/system/libvintf/include/vintf/
DVendorNdk.h26 class VendorNdk {
28 VendorNdk() = default;
29 VendorNdk(std::string&& version) : mVersion(std::move(version)) {} in VendorNdk() function
30 VendorNdk(std::string&& version, std::set<std::string>&& libs) in VendorNdk() function
32 VendorNdk(const std::string& version) : mVersion(version) {} in VendorNdk() function
33 VendorNdk(const std::string& version, const std::set<std::string>& libs) in VendorNdk() function
35 bool operator==(const VendorNdk& other) const { return version() == other.version(); }
DHalManifest.h113 const std::vector<VendorNdk>& vendorNdks() const;
230 std::vector<VendorNdk> mVendorNdks;
DCompatibilityMatrix.h174 VendorNdk mVendorNdk;
/system/libvintf/xsd/compatibilityMatrix/api/
Dcurrent.txt19 method public compatibility.matrix.VendorNdk getVendorNdk();
28 method public void setVendorNdk(compatibility.matrix.VendorNdk);
98 public class VendorNdk {
99 ctor public VendorNdk();
/system/libvintf/xsd/halManifest/api/
Dcurrent.txt59 method public java.util.List<hal.manifest.VendorNdk> getVendorNdk();
81 public class VendorNdk {
82 ctor public VendorNdk();
/system/libvintf/
DHalManifest.cpp315 static bool checkVendorNdkCompatibility(const VendorNdk& matVendorNdk, in checkVendorNdkCompatibility()
316 const std::vector<VendorNdk>& manifestVendorNdk, in checkVendorNdkCompatibility()
485 const std::vector<VendorNdk>& HalManifest::vendorNdks() const { in vendorNdks()
Dparse_xml.cpp880 struct VendorNdkConverter : public XmlNodeConverter<VendorNdk> {
882 void mutateNode(const VendorNdk& object, NodeType* root, DocType* d) const override { in mutateNode()
886 bool buildObject(VendorNdk* object, NodeType* root, std::string* error) const override { in buildObject()
1201 if (!(m.device.mVendorNdk == VendorNdk{})) { in mutateNode()
DAssembleVintf.cpp568 valueInMatrix = VendorNdk{std::move(vndkVersion)}; in assembleCompatibilityMatrix()
/system/libvintf/test/
DLibVintfTest.cpp2537 TEST_F(LibVintfTest, VendorNdk) { in TEST_F() argument