1 /* 2 * This file is auto-generated. DO NOT MODIFY. 3 * Using: out/host/linux-x86/bin/aidl-cpp -dout/soong/.temp/sbox/10ece8c3f2676d939c6532d9928a7335ddf2c032/out/android/security/identity/GetEntriesResultParcel.cpp.d --ninja -Isystem/security/identity/binder -t --min_sdk_version=platform_apis -Isystem/security/identity/binder/ system/security/identity/binder/android/security/identity/GetEntriesResultParcel.aidl out/soong/.temp/sbox/10ece8c3f2676d939c6532d9928a7335ddf2c032/out out/soong/.temp/sbox/10ece8c3f2676d939c6532d9928a7335ddf2c032/out/android/security/identity/GetEntriesResultParcel.cpp 4 * 5 * DO NOT CHECK THIS FILE INTO A CODE TREE (e.g. git, etc..). 6 * ALWAYS GENERATE THIS FILE FROM UPDATED AIDL COMPILER 7 * AS A BUILD INTERMEDIATE ONLY. THIS IS NOT SOURCE CODE. 8 */ 9 #pragma once 10 11 #include <android/binder_to_string.h> 12 #include <android/security/identity/ResultNamespaceParcel.h> 13 #include <binder/Parcel.h> 14 #include <binder/Status.h> 15 #include <cstdint> 16 #include <tuple> 17 #include <utils/String16.h> 18 #include <vector> 19 20 namespace android::security::identity { 21 class ResultNamespaceParcel; 22 } // namespace android::security::identity 23 namespace android { 24 namespace security { 25 namespace identity { 26 class LIBBINDER_EXPORTED GetEntriesResultParcel : public ::android::Parcelable { 27 public: 28 ::std::vector<::android::security::identity::ResultNamespaceParcel> resultNamespaces; 29 ::std::vector<uint8_t> deviceNameSpaces; 30 ::std::vector<uint8_t> mac; 31 ::std::vector<uint8_t> staticAuthenticationData; 32 ::std::vector<uint8_t> signature; 33 inline bool operator==(const GetEntriesResultParcel& _rhs) const { 34 return std::tie(resultNamespaces, deviceNameSpaces, mac, staticAuthenticationData, signature) == std::tie(_rhs.resultNamespaces, _rhs.deviceNameSpaces, _rhs.mac, _rhs.staticAuthenticationData, _rhs.signature); 35 } 36 inline bool operator<(const GetEntriesResultParcel& _rhs) const { 37 return std::tie(resultNamespaces, deviceNameSpaces, mac, staticAuthenticationData, signature) < std::tie(_rhs.resultNamespaces, _rhs.deviceNameSpaces, _rhs.mac, _rhs.staticAuthenticationData, _rhs.signature); 38 } 39 inline bool operator!=(const GetEntriesResultParcel& _rhs) const { 40 return !(*this == _rhs); 41 } 42 inline bool operator>(const GetEntriesResultParcel& _rhs) const { 43 return _rhs < *this; 44 } 45 inline bool operator>=(const GetEntriesResultParcel& _rhs) const { 46 return !(*this < _rhs); 47 } 48 inline bool operator<=(const GetEntriesResultParcel& _rhs) const { 49 return !(_rhs < *this); 50 } 51 52 ::android::status_t readFromParcel(const ::android::Parcel* _aidl_parcel) final; 53 ::android::status_t writeToParcel(::android::Parcel* _aidl_parcel) const final; getParcelableDescriptor()54 static const ::android::String16& getParcelableDescriptor() { 55 static const ::android::StaticString16 DESCRIPTOR (u"android.security.identity.GetEntriesResultParcel"); 56 return DESCRIPTOR; 57 } toString()58 inline std::string toString() const { 59 std::ostringstream _aidl_os; 60 _aidl_os << "GetEntriesResultParcel{"; 61 _aidl_os << "resultNamespaces: " << ::android::internal::ToString(resultNamespaces); 62 _aidl_os << ", deviceNameSpaces: " << ::android::internal::ToString(deviceNameSpaces); 63 _aidl_os << ", mac: " << ::android::internal::ToString(mac); 64 _aidl_os << ", staticAuthenticationData: " << ::android::internal::ToString(staticAuthenticationData); 65 _aidl_os << ", signature: " << ::android::internal::ToString(signature); 66 _aidl_os << "}"; 67 return _aidl_os.str(); 68 } 69 }; // class GetEntriesResultParcel 70 } // namespace identity 71 } // namespace security 72 } // namespace android 73