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 30 --ninja -d out/soong/.intermediates/packages/modules/StatsD/aidl/statsd-aidl-ndk-source/gen/staging/android/os/IPullAtomResultReceiver.cpp.d -h out/soong/.intermediates/packages/modules/StatsD/aidl/statsd-aidl-ndk-source/gen/include/staging -o out/soong/.intermediates/packages/modules/StatsD/aidl/statsd-aidl-ndk-source/gen/staging -Npackages/modules/StatsD/aidl packages/modules/StatsD/aidl/android/os/IPullAtomResultReceiver.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 "aidl/android/os/IPullAtomResultReceiver.h"
12 
13 #include <android/binder_ibinder.h>
14 #include <cassert>
15 
16 #ifndef __BIONIC__
17 #ifndef __assert2
18 #define __assert2(a,b,c,d) ((void)0)
19 #endif
20 #endif
21 
22 namespace aidl {
23 namespace android {
24 namespace os {
25 class BnPullAtomResultReceiver : public ::ndk::BnCInterface<IPullAtomResultReceiver> {
26 public:
27   BnPullAtomResultReceiver();
28   virtual ~BnPullAtomResultReceiver();
29 protected:
30   ::ndk::SpAIBinder createBinder() override;
31 private:
32 };
33 class IPullAtomResultReceiverDelegator : public BnPullAtomResultReceiver {
34 public:
IPullAtomResultReceiverDelegator(const std::shared_ptr<IPullAtomResultReceiver> & impl)35   explicit IPullAtomResultReceiverDelegator(const std::shared_ptr<IPullAtomResultReceiver> &impl) : _impl(impl) {
36   }
37 
pullFinished(int32_t in_atomTag,bool in_success,const std::vector<::aidl::android::util::StatsEventParcel> & in_output)38   ::ndk::ScopedAStatus pullFinished(int32_t in_atomTag, bool in_success, const std::vector<::aidl::android::util::StatsEventParcel>& in_output) override {
39     return _impl->pullFinished(in_atomTag, in_success, in_output);
40   }
41 protected:
42 private:
43   std::shared_ptr<IPullAtomResultReceiver> _impl;
44 };
45 
46 }  // namespace os
47 }  // namespace android
48 }  // namespace aidl
49