Home
last modified time | relevance | path

Searched refs:hdrBegin (Results 1 – 3 of 3) sorted by relevance

/hardware/interfaces/identity/support/src/
Dcppbor_parse.cpp56 std::tuple<const uint8_t*, ParseClient*> handleUint(uint64_t value, const uint8_t* hdrBegin, in handleUint() argument
61 parseClient->item(item, hdrBegin, hdrEnd /* valueBegin */, hdrEnd /* itemEnd */)}; in handleUint()
64 std::tuple<const uint8_t*, ParseClient*> handleNint(uint64_t value, const uint8_t* hdrBegin, in handleNint() argument
68 parseClient->error(hdrBegin, "NINT values that don't fit in int64_t are not supported."); in handleNint()
69 return {hdrBegin, nullptr /* end parsing */}; in handleNint()
73 parseClient->item(item, hdrBegin, hdrEnd /* valueBegin */, hdrEnd /* itemEnd */)}; in handleNint()
76 std::tuple<const uint8_t*, ParseClient*> handleBool(uint64_t value, const uint8_t* hdrBegin, in handleBool() argument
81 parseClient->item(item, hdrBegin, hdrEnd /* valueBegin */, hdrEnd /* itemEnd */)}; in handleBool()
84 std::tuple<const uint8_t*, ParseClient*> handleNull(const uint8_t* hdrBegin, const uint8_t* hdrEnd, in handleNull() argument
88 parseClient->item(item, hdrBegin, hdrEnd /* valueBegin */, hdrEnd /* itemEnd */)}; in handleNull()
[all …]
/hardware/interfaces/identity/support/include/cppbor/
Dcppbor_parse.h108 virtual ParseClient* item(std::unique_ptr<Item>& item, const uint8_t* hdrBegin,
122 virtual ParseClient* itemEnd(std::unique_ptr<Item>& item, const uint8_t* hdrBegin,
/hardware/interfaces/identity/support/tests/
Dcppbor_test.cpp673 MOCK_METHOD4(item, ParseClient*(std::unique_ptr<Item>& item, const uint8_t* hdrBegin,
675 MOCK_METHOD4(itemEnd, ParseClient*(std::unique_ptr<Item>& item, const uint8_t* hdrBegin,