Home
last modified time | relevance | path

Searched refs:lft (Results 1 – 8 of 8) sorted by relevance

/system/libvintf/include/vintf/
DVndk.h59 inline bool operator==(const VndkVersionRange &lft, const VndkVersionRange &rgt) {
60 return lft.sdk == rgt.sdk && lft.vndk == rgt.vndk &&
61 lft.patchMin == rgt.patchMin && lft.patchMax == rgt.patchMax;
63 inline bool operator==(const Vndk &lft, const Vndk &rgt) {
64 return lft.mVersionRange == rgt.mVersionRange &&
65 lft.mLibraries == rgt.mLibraries;
DSepolicy.h52 inline bool operator==(const Sepolicy &lft, const Sepolicy &rgt) {
53 return lft.kernelSepolicyVersion() == rgt.kernelSepolicyVersion() &&
54 lft.sepolicyVersions() == rgt.sepolicyVersions();
DHalManifest.h132 friend bool operator==(const HalManifest &lft, const HalManifest &rgt);
/system/libvintf/
DCompatibilityMatrix.cpp73 bool operator==(const CompatibilityMatrix &lft, const CompatibilityMatrix &rgt) { in operator ==() argument
74 return lft.mType == rgt.mType && in operator ==()
75 lft.mHals == rgt.mHals && in operator ==()
76 (lft.mType != SchemaType::DEVICE || ( in operator ==()
77 lft.device.mVndk == rgt.device.mVndk)) && in operator ==()
78 (lft.mType != SchemaType::FRAMEWORK || ( in operator ==()
79 lft.framework.mKernels == rgt.framework.mKernels && in operator ==()
80 lft.framework.mSepolicy == rgt.framework.mSepolicy && in operator ==()
81 lft.framework.mAvbMetaVersion == rgt.framework.mAvbMetaVersion)); in operator ==()
DHalInterface.cpp25 bool operator==(const HalInterface& lft, const HalInterface& rgt) { in operator ==() argument
26 if (lft.name != rgt.name) in operator ==()
28 if (lft.instances != rgt.instances) in operator ==()
DHalManifest.cpp376 bool operator==(const HalManifest &lft, const HalManifest &rgt) { in operator ==() argument
377 return lft.mType == rgt.mType && in operator ==()
378 lft.mHals == rgt.mHals && in operator ==()
379 (lft.mType != SchemaType::DEVICE || ( in operator ==()
380 lft.device.mSepolicyVersion == rgt.device.mSepolicyVersion)) && in operator ==()
381 (lft.mType != SchemaType::FRAMEWORK || ( in operator ==()
382 lft.framework.mVndks == rgt.framework.mVndks)); in operator ==()
/system/tools/hidl/
DConstantExpression.cpp68 ScalarType::Kind usualArithmeticConversion(ScalarType::Kind lft, in usualArithmeticConversion() argument
70 CHECK(isSupported(lft) && isSupported(rgt)); in usualArithmeticConversion()
72 if(lft == rgt) return lft; // easy case in usualArithmeticConversion()
73 if(lft == SK(BOOL)) return rgt; in usualArithmeticConversion()
74 if(rgt == SK(BOOL)) return lft; in usualArithmeticConversion()
75 bool isLftSigned = (lft == SK(INT8)) || (lft == SK(INT16)) in usualArithmeticConversion()
76 || (lft == SK(INT32)) || (lft == SK(INT64)); in usualArithmeticConversion()
79 if(isLftSigned == isRgtSigned) return lft < rgt ? rgt : lft; in usualArithmeticConversion()
80 ScalarType::Kind unsignedRank = isLftSigned ? rgt : lft; in usualArithmeticConversion()
81 ScalarType::Kind signedRank = isLftSigned ? lft : rgt; in usualArithmeticConversion()
[all …]
/system/netd/server/
DXfrmController.cpp644 fillXfrmLifetimeDefaults(&usersa->lft); in fillUserSaInfo()
731 fillXfrmLifetimeDefaults(&usersp->lft); in fillTransportModeUserSpInfo()