mirror of
https://github.com/Evolution-X/hardware_interfaces
synced 2026-02-05 01:41:12 +00:00
Bug:32279499 Test: make android.hardware.tests.libhwbinder@1.0-impl Change-Id: I75056afa32b8189020608779ec495659ea35ed48
32 lines
917 B
C++
32 lines
917 B
C++
#ifndef HIDL_GENERATED_android_hardware_benchmark_V1_0_Benchmark_H_
|
|
#define HIDL_GENERATED_android_hardware_benchmark_V1_0_Benchmark_H_
|
|
|
|
#include <android/hardware/tests/libhwbinder/1.0/IBenchmark.h>
|
|
#include <hidl/Status.h>
|
|
|
|
namespace android {
|
|
namespace hardware {
|
|
namespace tests {
|
|
namespace libhwbinder {
|
|
namespace V1_0 {
|
|
namespace implementation {
|
|
|
|
using ::android::hardware::tests::libhwbinder::V1_0::IBenchmark;
|
|
using ::android::hardware::Return;
|
|
using ::android::hardware::hidl_vec;
|
|
|
|
struct Benchmark : public IBenchmark {
|
|
virtual Return<void> sendVec(const hidl_vec<uint8_t>& data, sendVec_cb _hidl_cb) override;
|
|
};
|
|
|
|
extern "C" IBenchmark* HIDL_FETCH_IBenchmark(const char* name);
|
|
|
|
} // namespace implementation
|
|
} // namespace V1_0
|
|
} // namespace libhwbinder
|
|
} // namespace tests
|
|
} // namespace hardware
|
|
} // namespace android
|
|
|
|
#endif // HIDL_GENERATED_android_hardware_benchmark_V1_0_Benchmark_H_
|