Searched refs:hdrBegin (Results 1 – 3 of 3) sorted by relevance
/aosp12/hardware/interfaces/identity/support/src/ |
H A D | cppbor_parse.cpp | 69 return {hdrBegin, nullptr /* end parsing */}; in handleNint() 98 return {hdrBegin, nullptr /* end parsing */}; in handleString() 103 parseClient->item(item, hdrBegin, valueBegin, valueBegin + length)}; in handleString() 164 parseClient->error(hdrBegin, "Not enough entries for " + typeName + "."); in handleEntries() 165 return {hdrBegin, nullptr /* end parsing */}; in handleEntries() 168 if (!parseClient) return {hdrBegin, nullptr}; in handleEntries() 174 std::unique_ptr<Item> item, uint64_t entryCount, const uint8_t* hdrBegin, in handleCompound() argument 179 if (!parseClient) return {hdrBegin, nullptr}; in handleCompound() 183 handleEntries(entryCount, hdrBegin, valueBegin, end, typeName, parseClient); in handleCompound() 184 if (!parseClient) return {hdrBegin, nullptr}; in handleCompound() [all …]
|
/aosp12/hardware/interfaces/identity/support/include/cppbor/ |
H A D | cppbor_parse.h | 108 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,
|
/aosp12/hardware/interfaces/identity/support/tests/ |
H A D | cppbor_test.cpp | 673 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,
|