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/storaged/IStoragedPrivate.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/storaged/IStoragedPrivate.aidl out/soong/.temp/sbox/318b8d90ecf93085c641582dc1fc9ad4e55d0982/out out/soong/.temp/sbox/318b8d90ecf93085c641582dc1fc9ad4e55d0982/out/android/os/storaged/IStoragedPrivate.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 <include/uid_info.h>
17 #include <utils/StrongPointer.h>
18 #include <vector>
19 
20 namespace android {
21 namespace os {
22 namespace storaged {
23 class LIBBINDER_EXPORTED IStoragedPrivateDelegator;
24 
25 class LIBBINDER_EXPORTED IStoragedPrivate : public ::android::IInterface {
26 public:
27   typedef IStoragedPrivateDelegator DefaultDelegator;
28   DECLARE_META_INTERFACE(StoragedPrivate)
29   virtual ::android::binder::Status dumpUids(::std::vector<::android::os::storaged::UidInfo>* _aidl_return) = 0;
30   virtual ::android::binder::Status dumpPerfHistory(::std::vector<int32_t>* _aidl_return) = 0;
31 };  // class IStoragedPrivate
32 
33 class LIBBINDER_EXPORTED IStoragedPrivateDefault : public IStoragedPrivate {
34 public:
onAsBinder()35   ::android::IBinder* onAsBinder() override {
36     return nullptr;
37   }
dumpUids(::std::vector<::android::os::storaged::UidInfo> *)38   ::android::binder::Status dumpUids(::std::vector<::android::os::storaged::UidInfo>* /*_aidl_return*/) override {
39     return ::android::binder::Status::fromStatusT(::android::UNKNOWN_TRANSACTION);
40   }
dumpPerfHistory(::std::vector<int32_t> *)41   ::android::binder::Status dumpPerfHistory(::std::vector<int32_t>* /*_aidl_return*/) override {
42     return ::android::binder::Status::fromStatusT(::android::UNKNOWN_TRANSACTION);
43   }
44 };  // class IStoragedPrivateDefault
45 }  // namespace storaged
46 }  // namespace os
47 }  // namespace android
48