Files
android_hardware_oplus/aidl/osense-client/OsenseAidlHalReporter.cpp
LuK1337 276b1e0c0b Introduce vendor.oplus.hardware.osense.client-service
Change-Id: I5b9e1324a70966e1505e45fca54273ea22028be5
2024-08-26 18:02:29 +02:00

52 lines
1.6 KiB
C++

/*
* Copyright (C) 2024 The LineageOS Project
*
* SPDX-License-Identifier: Apache-2.0
*/
#include "OsenseAidlHalReporter.h"
namespace aidl {
namespace vendor {
namespace oplus {
namespace hardware {
namespace osense {
namespace client {
ndk::ScopedAStatus OsenseAidlHalReporter::checkAccessPermission(const std::string& identity,
int32_t* _aidl_return) {
*_aidl_return = 1;
return ndk::ScopedAStatus::ok();
}
ndk::ScopedAStatus OsenseAidlHalReporter::osenseClrSceneAction(const std::string& identity,
int64_t request) {
return ndk::ScopedAStatus::ok();
}
ndk::ScopedAStatus OsenseAidlHalReporter::osenseSetNotification(
const std::string& identity, const OsenseAidlHalNotifyRequest& osenseHalNotifyRequest) {
return ndk::ScopedAStatus::ok();
}
ndk::ScopedAStatus OsenseAidlHalReporter::osenseSetSceneAction(
const std::string& identity, const OsenseAidlHalSaRequest& osenseHalSaRequest) {
return ndk::ScopedAStatus::ok();
}
ndk::ScopedAStatus OsenseAidlHalReporter::osenseResetCtrlData(const std::string& identity) {
return ndk::ScopedAStatus::ok();
}
ndk::ScopedAStatus OsenseAidlHalReporter::osenseSetCtrlData(const std::string& identity,
const OsenseControlInfo& ctrldata) {
return ndk::ScopedAStatus::ok();
}
} // namespace client
} // namespace osense
} // namespace hardware
} // namespace oplus
} // namespace vendor
} // namespace aidl