Home
last modified time | relevance | path

Searched refs:OptInt64 (Results 1 – 6 of 6) sorted by relevance

/hardware/interfaces/biometrics/common/config/include/config/
DConfig.h33 using OptInt64 = std::optional<std::int64_t>; variable
37 using ConfigValue = std::variant<OptBool, OptInt32, OptInt64, OptString, OptIntVec>;
93 } else if (std::holds_alternative<OptInt64>(v)) { in toString()
94 OptInt64 ov = std::get<OptInt64>(v); in toString()
/hardware/interfaces/biometrics/common/config/tests/
DConfigTest.cpp37 OptInt64 val_aint64 = SP_DEFAULT_aint64;
55 OptInt64 aint64() { in aint64()
58 bool aint64(const OptInt64& v) { in aint64()
92 CREATE_GETTER_SETTER_WRAPPER(aint64, OptInt64)
151 ASSERT_EQ((std::get<OptInt64>(cfg.parseInt64(values[i].strval))).value_or(defval), in TEST_F()
226 (std::get<OptInt64>(cfg.parseInt64(AIDL_DEFAULT_aint64))).value()); in TEST_F()
/hardware/interfaces/biometrics/fingerprint/aidl/default/
DFingerprintConfig.cpp42 CREATE_GETTER_SETTER_WRAPPER(authenticator_id, OptInt64)
43 CREATE_GETTER_SETTER_WRAPPER(challenge, OptInt64)
DFakeFingerprintEngine.cpp49 Fingerprint::cfg().setopt<OptInt64>("challenge", std::nullopt); in revokeChallengeImpl()
/hardware/interfaces/biometrics/common/config/
DConfig.cpp61 OptInt64 res; in parseInt64()
/hardware/interfaces/biometrics/fingerprint/aidl/default/tests/
DFakeFingerprintEngineTest.cpp158 ASSERT_FALSE((Fingerprint::cfg().getopt<OptInt64>("challenge")).has_value()); in TEST_F()