hidl: biometrics: fingerprint: Run clang-format
Change-Id: Ia1a05b3975fba530f5a8c2cc6304c4147c1df2d3
This commit is contained in:
parent
4b8b52d599
commit
cdc6694adc
@ -13,7 +13,7 @@ class UdfpsHandler {
|
||||
public:
|
||||
virtual ~UdfpsHandler() = default;
|
||||
|
||||
virtual void init(fingerprint_device_t *device) = 0;
|
||||
virtual void init(fingerprint_device_t* device) = 0;
|
||||
virtual void onFingerDown(uint32_t x, uint32_t y, float minor, float major) = 0;
|
||||
virtual void onFingerUp() = 0;
|
||||
|
||||
@ -26,4 +26,4 @@ struct UdfpsHandlerFactory {
|
||||
void (*destroy)(UdfpsHandler* handler);
|
||||
};
|
||||
|
||||
UdfpsHandlerFactory *getUdfpsHandlerFactory();
|
||||
UdfpsHandlerFactory* getUdfpsHandlerFactory();
|
||||
|
@ -1,9 +1,9 @@
|
||||
/*
|
||||
* Copyright (C) 2014 The Android Open Source Project
|
||||
* 2022 The LineageOS Project
|
||||
*
|
||||
/*
|
||||
* Copyright (C) 2014 The Android Open Source Project
|
||||
* 2022 The LineageOS Project
|
||||
*
|
||||
* SPDX-License-Identifier: Apache-2.0
|
||||
*/
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
|
||||
@ -36,13 +36,14 @@ typedef enum fingerprint_msg_type {
|
||||
* send FINGERPRINT_ACQUIRED_IMAGER_DIRTY followed by FINGERPRINT_ERROR_CANCELED.
|
||||
*/
|
||||
typedef enum fingerprint_error {
|
||||
FINGERPRINT_ERROR_HW_UNAVAILABLE = 1, /* The hardware has an error that can't be resolved. */
|
||||
FINGERPRINT_ERROR_HW_UNAVAILABLE = 1, /* The hardware has an error that can't be resolved. */
|
||||
FINGERPRINT_ERROR_UNABLE_TO_PROCESS = 2, /* Bad data; operation can't continue */
|
||||
FINGERPRINT_ERROR_TIMEOUT = 3, /* The operation has timed out waiting for user input. */
|
||||
FINGERPRINT_ERROR_TIMEOUT = 3, /* The operation has timed out waiting for user input. */
|
||||
FINGERPRINT_ERROR_NO_SPACE = 4, /* No space available to store a template */
|
||||
FINGERPRINT_ERROR_CANCELED = 5, /* The current operation can't proceed. See above. */
|
||||
FINGERPRINT_ERROR_UNABLE_TO_REMOVE = 6, /* fingerprint with given id can't be removed */
|
||||
FINGERPRINT_ERROR_LOCKOUT = 7, /* the fingerprint hardware is in lockout due to too many attempts */
|
||||
FINGERPRINT_ERROR_LOCKOUT =
|
||||
7, /* the fingerprint hardware is in lockout due to too many attempts */
|
||||
FINGERPRINT_ERROR_VENDOR_BASE = 1000 /* vendor-specific error messages start here */
|
||||
} fingerprint_error_t;
|
||||
|
||||
@ -56,13 +57,13 @@ typedef enum fingerprint_error {
|
||||
*/
|
||||
typedef enum fingerprint_acquired_info {
|
||||
FINGERPRINT_ACQUIRED_GOOD = 0,
|
||||
FINGERPRINT_ACQUIRED_PARTIAL = 1, /* sensor needs more data, i.e. longer swipe. */
|
||||
FINGERPRINT_ACQUIRED_PARTIAL = 1, /* sensor needs more data, i.e. longer swipe. */
|
||||
FINGERPRINT_ACQUIRED_INSUFFICIENT = 2, /* image doesn't contain enough detail for recognition*/
|
||||
FINGERPRINT_ACQUIRED_IMAGER_DIRTY = 3, /* sensor needs to be cleaned */
|
||||
FINGERPRINT_ACQUIRED_TOO_SLOW = 4, /* mostly swipe-type sensors; not enough data collected */
|
||||
FINGERPRINT_ACQUIRED_TOO_FAST = 5, /* for swipe and area sensors; tell user to slow down*/
|
||||
FINGERPRINT_ACQUIRED_DETECTED = 6, /* when the finger is first detected. Used to optimize wakeup.
|
||||
Should be followed by one of the above messages */
|
||||
FINGERPRINT_ACQUIRED_DETECTED = 6, /* when the finger is first detected. Used to optimize
|
||||
wakeup. Should be followed by one of the above messages */
|
||||
FINGERPRINT_ACQUIRED_VENDOR_BASE = 1000 /* vendor-specific acquisition messages start here */
|
||||
} fingerprint_acquired_info_t;
|
||||
|
||||
@ -109,7 +110,7 @@ typedef struct fingerprint_msg {
|
||||
} fingerprint_msg_t;
|
||||
|
||||
/* Callback function type */
|
||||
typedef void (*fingerprint_notify_t)(const fingerprint_msg_t *msg);
|
||||
typedef void (*fingerprint_notify_t)(const fingerprint_msg_t* msg);
|
||||
|
||||
/* Synchronous operation */
|
||||
typedef struct fingerprint_device {
|
||||
@ -136,7 +137,7 @@ typedef struct fingerprint_device {
|
||||
* Function return: 0 if callback function is successfuly registered
|
||||
* or a negative number in case of error, generally from the errno.h set.
|
||||
*/
|
||||
int (*set_notify)(struct fingerprint_device *dev, fingerprint_notify_t notify);
|
||||
int (*set_notify)(struct fingerprint_device* dev, fingerprint_notify_t notify);
|
||||
|
||||
/*
|
||||
* Fingerprint pre-enroll enroll request:
|
||||
@ -148,7 +149,7 @@ typedef struct fingerprint_device {
|
||||
* Function return: 0 if function failed
|
||||
* otherwise, a uint64_t of token
|
||||
*/
|
||||
uint64_t (*pre_enroll)(struct fingerprint_device *dev);
|
||||
uint64_t (*pre_enroll)(struct fingerprint_device* dev);
|
||||
|
||||
/*
|
||||
* Fingerprint enroll request:
|
||||
@ -164,8 +165,8 @@ typedef struct fingerprint_device {
|
||||
* or a negative number in case of error, generally from the errno.h set.
|
||||
* A notify() function may be called indicating the error condition.
|
||||
*/
|
||||
int (*enroll)(struct fingerprint_device *dev, const hw_auth_token_t *hat,
|
||||
uint32_t gid, uint32_t timeout_sec);
|
||||
int (*enroll)(struct fingerprint_device* dev, const hw_auth_token_t* hat, uint32_t gid,
|
||||
uint32_t timeout_sec);
|
||||
|
||||
/*
|
||||
* Finishes the enroll operation and invalidates the pre_enroll() generated challenge.
|
||||
@ -175,7 +176,7 @@ typedef struct fingerprint_device {
|
||||
* Function return: 0 if the request is accepted
|
||||
* or a negative number in case of error, generally from the errno.h set.
|
||||
*/
|
||||
int (*post_enroll)(struct fingerprint_device *dev);
|
||||
int (*post_enroll)(struct fingerprint_device* dev);
|
||||
|
||||
/*
|
||||
* get_authenticator_id:
|
||||
@ -185,7 +186,7 @@ typedef struct fingerprint_device {
|
||||
*
|
||||
* Function return: current authenticator id or 0 if function failed.
|
||||
*/
|
||||
uint64_t (*get_authenticator_id)(struct fingerprint_device *dev);
|
||||
uint64_t (*get_authenticator_id)(struct fingerprint_device* dev);
|
||||
|
||||
/*
|
||||
* Cancel pending enroll or authenticate, sending FINGERPRINT_ERROR_CANCELED
|
||||
@ -195,7 +196,7 @@ typedef struct fingerprint_device {
|
||||
* Function return: 0 if cancel request is accepted
|
||||
* or a negative number in case of error, generally from the errno.h set.
|
||||
*/
|
||||
int (*cancel)(struct fingerprint_device *dev);
|
||||
int (*cancel)(struct fingerprint_device* dev);
|
||||
|
||||
/*
|
||||
* Enumerate all the fingerprint templates found in the directory set by
|
||||
@ -210,7 +211,7 @@ typedef struct fingerprint_device {
|
||||
* Function return: 0 if enumerate request is accepted
|
||||
* or a negative number in case of error, generally from the errno.h set.
|
||||
*/
|
||||
int (*enumerate)(struct fingerprint_device *dev);
|
||||
int (*enumerate)(struct fingerprint_device* dev);
|
||||
|
||||
/*
|
||||
* Fingerprint remove request:
|
||||
@ -228,7 +229,7 @@ typedef struct fingerprint_device {
|
||||
* Function return: 0 if fingerprint template(s) can be successfully deleted
|
||||
* or a negative number in case of error, generally from the errno.h set.
|
||||
*/
|
||||
int (*remove)(struct fingerprint_device *dev, uint32_t gid, uint32_t fid);
|
||||
int (*remove)(struct fingerprint_device* dev, uint32_t gid, uint32_t fid);
|
||||
|
||||
/*
|
||||
* Restricts the HAL operation to a set of fingerprints belonging to a
|
||||
@ -239,8 +240,7 @@ typedef struct fingerprint_device {
|
||||
* Function return: 0 on success
|
||||
* or a negative number in case of error, generally from the errno.h set.
|
||||
*/
|
||||
int (*set_active_group)(struct fingerprint_device *dev, uint32_t gid,
|
||||
const char *store_path);
|
||||
int (*set_active_group)(struct fingerprint_device* dev, uint32_t gid, const char* store_path);
|
||||
|
||||
/*
|
||||
* Authenticates an operation identifed by operation_id
|
||||
@ -248,7 +248,7 @@ typedef struct fingerprint_device {
|
||||
* Function return: 0 on success
|
||||
* or a negative number in case of error, generally from the errno.h set.
|
||||
*/
|
||||
int (*authenticate)(struct fingerprint_device *dev, uint64_t operation_id, uint32_t gid);
|
||||
int (*authenticate)(struct fingerprint_device* dev, uint64_t operation_id, uint32_t gid);
|
||||
|
||||
/*
|
||||
* Xiaomi fingerprint extension command.
|
||||
@ -256,7 +256,7 @@ typedef struct fingerprint_device {
|
||||
int (*extCmd)(struct fingerprint_device* dev, int32_t cmd, int32_t param);
|
||||
|
||||
/* Reserved for backward binary compatibility */
|
||||
void *reserved[4];
|
||||
void* reserved[4];
|
||||
} fingerprint_device_t;
|
||||
|
||||
typedef struct fingerprint_module {
|
||||
|
Loading…
Reference in New Issue
Block a user