Home
last modified time | relevance | path

Searched refs:asBool (Results 1 – 7 of 7) sorted by relevance

/hardware/interfaces/identity/support/src/
Dcppbor.cpp141 return *asBool() == *(other.asBool()); in operator ==()
DIdentityCredentialSupport.cpp311 const cppbor::Bool* asBool = item->asSimple()->asBool(); in cborPrettyPrintInternal() local
313 if (asBool != nullptr) { in cborPrettyPrintInternal()
314 out.append(asBool->value() ? "true" : "false"); in cborPrettyPrintInternal()
/hardware/google/pixel/thermal/utils/
Dconfig_parser.cpp215 is_monitor = sensors[i]["Monitor"].asBool(); in ParseSensorInfo()
/hardware/interfaces/identity/aidl/default/
DIdentityCredential.cpp60 ((*arrayItem)[1]->asSimple() != nullptr ? ((*arrayItem)[1]->asSimple()->asBool()) in initialize()
453 (simple != nullptr) ? simple->asBool() : nullptr; in startRetrieval()
/hardware/interfaces/identity/support/include/cppbor/
Dcppbor.h590 virtual const Bool* asBool() const { return nullptr; }; in asBool() function
607 const Bool* asBool() const override { return this; } in asBool() function
/hardware/interfaces/identity/aidl/vts/
DVtsHalIdentityEndToEndTest.cpp90 ((*arrayItem)[1]->asSimple() != nullptr ? ((*arrayItem)[1]->asSimple()->asBool()) in extractFromTestCredentialData()
/hardware/interfaces/identity/support/tests/
Dcppbor_test.cpp634 EXPECT_NE(nullptr, item->asSimple()->asBool()); in TEST()
636 EXPECT_FALSE(item->asSimple()->asBool()->value()); in TEST()