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/RequestEntryParcel.cpp.d --ninja -Isystem/security/identity/binder -t --min_sdk_version=platform_apis -Isystem/security/identity/binder/ system/security/identity/binder/android/security/identity/RequestEntryParcel.aidl out/soong/.temp/sbox/10ece8c3f2676d939c6532d9928a7335ddf2c032/out out/soong/.temp/sbox/10ece8c3f2676d939c6532d9928a7335ddf2c032/out/android/security/identity/RequestEntryParcel.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 <binder/Parcel.h> 13 #include <binder/Status.h> 14 #include <string> 15 #include <tuple> 16 #include <utils/String16.h> 17 18 namespace android { 19 namespace security { 20 namespace identity { 21 class LIBBINDER_EXPORTED RequestEntryParcel : public ::android::Parcelable { 22 public: 23 ::std::string name; 24 inline bool operator==(const RequestEntryParcel& _rhs) const { 25 return std::tie(name) == std::tie(_rhs.name); 26 } 27 inline bool operator<(const RequestEntryParcel& _rhs) const { 28 return std::tie(name) < std::tie(_rhs.name); 29 } 30 inline bool operator!=(const RequestEntryParcel& _rhs) const { 31 return !(*this == _rhs); 32 } 33 inline bool operator>(const RequestEntryParcel& _rhs) const { 34 return _rhs < *this; 35 } 36 inline bool operator>=(const RequestEntryParcel& _rhs) const { 37 return !(*this < _rhs); 38 } 39 inline bool operator<=(const RequestEntryParcel& _rhs) const { 40 return !(_rhs < *this); 41 } 42 43 ::android::status_t readFromParcel(const ::android::Parcel* _aidl_parcel) final; 44 ::android::status_t writeToParcel(::android::Parcel* _aidl_parcel) const final; getParcelableDescriptor()45 static const ::android::String16& getParcelableDescriptor() { 46 static const ::android::StaticString16 DESCRIPTOR (u"android.security.identity.RequestEntryParcel"); 47 return DESCRIPTOR; 48 } toString()49 inline std::string toString() const { 50 std::ostringstream _aidl_os; 51 _aidl_os << "RequestEntryParcel{"; 52 _aidl_os << "name: " << ::android::internal::ToString(name); 53 _aidl_os << "}"; 54 return _aidl_os.str(); 55 } 56 }; // class RequestEntryParcel 57 } // namespace identity 58 } // namespace security 59 } // namespace android 60