You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
68 lines
2.3 KiB
68 lines
2.3 KiB
/*
|
|
* Copyright (C) 2020 The LineageOS Project
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
#ifndef VENDOR_LINEAGE_BIOMETRICS_FINGERPRINT_INSCREEN_V1_0_FINGERPRINTINSCREEN_H
|
|
#define VENDOR_LINEAGE_BIOMETRICS_FINGERPRINT_INSCREEN_V1_0_FINGERPRINTINSCREEN_H
|
|
|
|
#include <vendor/lineage/biometrics/fingerprint/inscreen/1.0/IFingerprintInscreen.h>
|
|
|
|
#include "samsung_fingerprint_inscreen.h"
|
|
|
|
namespace vendor {
|
|
namespace lineage {
|
|
namespace biometrics {
|
|
namespace fingerprint {
|
|
namespace inscreen {
|
|
namespace V1_0 {
|
|
namespace implementation {
|
|
|
|
using ::android::sp;
|
|
using ::android::hardware::Return;
|
|
using ::android::hardware::Void;
|
|
|
|
class FingerprintInscreen : public IFingerprintInscreen {
|
|
public:
|
|
FingerprintInscreen();
|
|
|
|
Return<void> onStartEnroll() override;
|
|
Return<void> onFinishEnroll() override;
|
|
Return<void> onPress() override;
|
|
Return<void> onRelease() override;
|
|
Return<void> onShowFODView() override;
|
|
Return<void> onHideFODView() override;
|
|
Return<bool> handleAcquired(int32_t acquiredInfo, int32_t vendorCode) override;
|
|
Return<bool> handleError(int32_t error, int32_t vendorCode) override;
|
|
Return<void> setLongPressEnabled(bool enabled) override;
|
|
Return<int32_t> getDimAmount(int32_t cur_brightness) override;
|
|
Return<bool> shouldBoostBrightness() override;
|
|
Return<void> setCallback(const sp<IFingerprintInscreenCallback>& callback) override;
|
|
Return<int32_t> getPositionX() override;
|
|
Return<int32_t> getPositionY() override;
|
|
Return<int32_t> getSize() override;
|
|
|
|
private:
|
|
std::mutex mCallbackLock;
|
|
sp<IFingerprintInscreenCallback> mCallback;
|
|
};
|
|
|
|
} // namespace implementation
|
|
} // namespace V1_0
|
|
} // namespace inscreen
|
|
} // namespace fingerprint
|
|
} // namespace biometrics
|
|
} // namespace lineage
|
|
} // namespace vendor
|
|
|
|
#endif // VENDOR_LINEAGE_BIOMETRICS_FINGERPRINT_INSCREEN_V1_0_FINGERPRINTINSCREEN_H
|
|
|