Home
last modified time | relevance | path

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

/external/libcppbor/include/cppbor/
Dcppbor_parse.h55 ParseResult parseWithViews(const uint8_t* begin, const uint8_t* end);
103 inline ParseResult parseWithViews(const uint8_t* begin, size_t size) { in parseWithViews() function
104 return parseWithViews(begin, begin + size); in parseWithViews()
137 void parseWithViews(const uint8_t* begin, const uint8_t* end, ParseClient* parseClient);
/external/libcppbor/src/
Dcppbor_parse.cpp378 void parseWithViews(const uint8_t* begin, const uint8_t* end, ParseClient* parseClient) { in parseWithViews() function
384 parseWithViews(const uint8_t* begin, const uint8_t* end) { in parseWithViews() function
386 parseWithViews(begin, end, &parseClient); in parseWithViews()
/external/libcppbor/tests/
Dcppbor_test.cpp1531 parseWithViews(encoded.data(), encoded.data() + encoded.size(), &mpc); in TEST()
1546 parseWithViews(encoded.data(), encoded.data() + encoded.size(), &mpc); in TEST()
1705 auto [item, pos, message] = parseWithViews(enc.data(), enc.size()); in TEST()
1713 auto [item, pos, message] = parseWithViews(enc.data(), enc.size()); in TEST()