1 /* 2 * This file is auto-generated. DO NOT MODIFY. 3 * Using: out/host/linux-x86/bin/aidl --lang=ndk -Weverything -Wno-missing-permission-annotation -t --min_sdk_version 31 --ninja -d out/soong/.intermediates/art/artd/binder/artd-aidl-ndk-source/gen/staging/com/android/server/art/FsPermission.cpp.d -h out/soong/.intermediates/art/artd/binder/artd-aidl-ndk-source/gen/include/staging -o out/soong/.intermediates/art/artd/binder/artd-aidl-ndk-source/gen/staging -Nart/artd/binder art/artd/binder/com/android/server/art/FsPermission.aidl 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 <cstdint> 12 #include <memory> 13 #include <optional> 14 #include <string> 15 #include <vector> 16 #include <android/binder_interface_utils.h> 17 #include <android/binder_parcelable_utils.h> 18 #include <android/binder_to_string.h> 19 #ifdef BINDER_STABILITY_SUPPORT 20 #include <android/binder_stability.h> 21 #endif // BINDER_STABILITY_SUPPORT 22 23 namespace aidl { 24 namespace com { 25 namespace android { 26 namespace server { 27 namespace art { 28 class FsPermission { 29 public: 30 typedef std::false_type fixed_size; 31 static const char* descriptor; 32 33 int32_t uid = 0; 34 int32_t gid = 0; 35 bool isOtherReadable = false; 36 bool isOtherExecutable = false; 37 38 binder_status_t readFromParcel(const AParcel* parcel); 39 binder_status_t writeToParcel(AParcel* parcel) const; 40 41 inline bool operator==(const FsPermission& _rhs) const { 42 return std::tie(uid, gid, isOtherReadable, isOtherExecutable) == std::tie(_rhs.uid, _rhs.gid, _rhs.isOtherReadable, _rhs.isOtherExecutable); 43 } 44 inline bool operator<(const FsPermission& _rhs) const { 45 return std::tie(uid, gid, isOtherReadable, isOtherExecutable) < std::tie(_rhs.uid, _rhs.gid, _rhs.isOtherReadable, _rhs.isOtherExecutable); 46 } 47 inline bool operator!=(const FsPermission& _rhs) const { 48 return !(*this == _rhs); 49 } 50 inline bool operator>(const FsPermission& _rhs) const { 51 return _rhs < *this; 52 } 53 inline bool operator>=(const FsPermission& _rhs) const { 54 return !(*this < _rhs); 55 } 56 inline bool operator<=(const FsPermission& _rhs) const { 57 return !(_rhs < *this); 58 } 59 60 static const ::ndk::parcelable_stability_t _aidl_stability = ::ndk::STABILITY_LOCAL; toString()61 inline std::string toString() const { 62 std::ostringstream _aidl_os; 63 _aidl_os << "FsPermission{"; 64 _aidl_os << "uid: " << ::android::internal::ToString(uid); 65 _aidl_os << ", gid: " << ::android::internal::ToString(gid); 66 _aidl_os << ", isOtherReadable: " << ::android::internal::ToString(isOtherReadable); 67 _aidl_os << ", isOtherExecutable: " << ::android::internal::ToString(isOtherExecutable); 68 _aidl_os << "}"; 69 return _aidl_os.str(); 70 } 71 }; 72 } // namespace art 73 } // namespace server 74 } // namespace android 75 } // namespace com 76 } // namespace aidl 77