android13/external/cros/system_api/dbus/biod/constants.proto

22 lines
528 B
Protocol Buffer
Raw Normal View History

2024-06-22 08:45:49 -04:00
// Copyright 2017 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
syntax = "proto2";
option optimize_for = LITE_RUNTIME;
package biod;
// Included in biod's EnrollScanDone signal.
enum ScanResult {
SCAN_RESULT_SUCCESS = 0;
SCAN_RESULT_PARTIAL = 1;
SCAN_RESULT_INSUFFICIENT = 2;
SCAN_RESULT_SENSOR_DIRTY = 3;
SCAN_RESULT_TOO_SLOW = 4;
SCAN_RESULT_TOO_FAST = 5;
SCAN_RESULT_IMMOBILE = 6;
SCAN_RESULT_MAX = 7;
}