1 /* 2 * This file is auto-generated. DO NOT MODIFY. 3 * Using: out/host/linux-x86/bin/aidl-cpp -dout/soong/.temp/sbox/318b8d90ecf93085c641582dc1fc9ad4e55d0982/out/android/os/IStoraged.cpp.d --ninja -Isystem/core/storaged/binder -Iframeworks/native/aidl/binder -t --min_sdk_version=platform_apis -Isystem/core/storaged/binder/ system/core/storaged/binder/android/os/IStoraged.aidl out/soong/.temp/sbox/318b8d90ecf93085c641582dc1fc9ad4e55d0982/out out/soong/.temp/sbox/318b8d90ecf93085c641582dc1fc9ad4e55d0982/out/android/os/IStoraged.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 <binder/IBinder.h> 12 #include <binder/IInterface.h> 13 #include <binder/Status.h> 14 #include <binder/Trace.h> 15 #include <cstdint> 16 #include <utils/StrongPointer.h> 17 18 namespace android { 19 namespace os { 20 class LIBBINDER_EXPORTED IStoragedDelegator; 21 22 class LIBBINDER_EXPORTED IStoraged : public ::android::IInterface { 23 public: 24 typedef IStoragedDelegator DefaultDelegator; 25 DECLARE_META_INTERFACE(Storaged) 26 virtual ::android::binder::Status onUserStarted(int32_t userId) = 0; 27 virtual ::android::binder::Status onUserStopped(int32_t userId) = 0; 28 virtual ::android::binder::Status getRecentPerf(int32_t* _aidl_return) = 0; 29 }; // class IStoraged 30 31 class LIBBINDER_EXPORTED IStoragedDefault : public IStoraged { 32 public: onAsBinder()33 ::android::IBinder* onAsBinder() override { 34 return nullptr; 35 } onUserStarted(int32_t)36 ::android::binder::Status onUserStarted(int32_t /*userId*/) override { 37 return ::android::binder::Status::fromStatusT(::android::UNKNOWN_TRANSACTION); 38 } onUserStopped(int32_t)39 ::android::binder::Status onUserStopped(int32_t /*userId*/) override { 40 return ::android::binder::Status::fromStatusT(::android::UNKNOWN_TRANSACTION); 41 } getRecentPerf(int32_t *)42 ::android::binder::Status getRecentPerf(int32_t* /*_aidl_return*/) override { 43 return ::android::binder::Status::fromStatusT(::android::UNKNOWN_TRANSACTION); 44 } 45 }; // class IStoragedDefault 46 } // namespace os 47 } // namespace android 48