Home
last modified time | relevance | path

Searched refs:parseClient (Results 1 – 2 of 2) sorted by relevance

/hardware/interfaces/identity/support/src/
Dcppbor_parse.cpp39 ParseClient* parseClient) { in parseLength() argument
41 parseClient->error(pos - 1, insufficientLengthString(sizeof(T), end - pos, "length field")); in parseLength()
54 ParseClient* parseClient);
58 ParseClient* parseClient) { in handleUint() argument
61 parseClient->item(item, hdrBegin, hdrEnd /* valueBegin */, hdrEnd /* itemEnd */)}; in handleUint()
66 ParseClient* parseClient) { in handleNint() argument
68 parseClient->error(hdrBegin, "NINT values that don't fit in int64_t are not supported."); in handleNint()
73 parseClient->item(item, hdrBegin, hdrEnd /* valueBegin */, hdrEnd /* itemEnd */)}; in handleNint()
78 ParseClient* parseClient) { in handleBool() argument
81 parseClient->item(item, hdrBegin, hdrEnd /* valueBegin */, hdrEnd /* itemEnd */)}; in handleBool()
[all …]
/hardware/interfaces/identity/support/include/cppbor/
Dcppbor_parse.h75 void parse(const uint8_t* begin, const uint8_t* end, ParseClient* parseClient);
81 inline void parse(const std::vector<uint8_t>& encoding, ParseClient* parseClient) { in parse() argument
82 return parse(encoding.data(), encoding.data() + encoding.size(), parseClient); in parse()