Home
last modified time | relevance | path

Searched defs:SepolicyVersionRange (Results 1 – 1 of 1) sorted by relevance

/aosp_15_r20/system/libvintf/include/vintf/
H A DVersionRange.h77 struct SepolicyVersionRange { struct
82 constexpr SepolicyVersionRange() : SepolicyVersionRange(0u, std::nullopt, std::nullopt) {} in SepolicyVersionRange() argument
83 constexpr SepolicyVersionRange(size_t mjV, std::optional<size_t> miV) in SepolicyVersionRange() argument
85 constexpr SepolicyVersionRange(size_t mjV, std::optional<size_t> miM, std::optional<size_t> mxM) in SepolicyVersionRange() function
91 bool operator==(const SepolicyVersionRange& other) const = default; argument
99 inline bool supportedBy(const SepolicyVersion& ver) const { in supportedBy()