Home
last modified time | relevance | path

Searched refs:mMajor (Results 1 – 3 of 3) sorted by relevance

/system/tools/hidl/utils/
DFQName.cpp49 mMajor = majorVer; in setTo()
64 mMajor(other.mMajor), in FQName()
171 return std::to_string(mMajor) + "." + std::to_string(mMinor); in version()
178 return "V" + std::to_string(mMajor) + "_" + std::to_string(mMinor); in sanitizedVersion()
226 return parseVersion(v, &mMajor, &mMinor); in setVersion()
230 clearVersion(&mMajor, &mMinor); in clearVersion()
234 return parseVersion(majorStr, minorStr, &mMajor, &mMinor); in parseVersion()
450 return mMajor > 0; in hasVersion()
454 return {mMajor, mMinor}; in getVersion()
459 ret.mMajor = major; in withVersion()
[all …]
/system/libhidl/base/include/hidl/
DHidlSupport.h856 constexpr hidl_version(uint16_t major, uint16_t minor) : mMajor(major), mMinor(minor) {
861 return (mMajor == other.get_major() && mMinor == other.get_minor());
869 return (mMajor < other.get_major() ||
870 (mMajor == other.get_major() && mMinor < other.get_minor()));
885 constexpr uint16_t get_major() const { return mMajor; }
889 uint16_t mMajor;
/system/tools/hidl/utils/include/hidl-util/
DFQName.h232 size_t mMajor = 0; member