Home
last modified time | relevance | path

Searched refs:zcbor_unordered_map_search (Results 1 – 4 of 4) sorted by relevance

/zcbor-latest/tests/unit/test1_unit_tests/src/
Dmain.c1148 …zassert_true(zcbor_unordered_map_search((zcbor_decoder_t *)zcbor_bool_pexpect, state, &(bool){fals… in decode_inner_map()
1151 …zassert_true(zcbor_unordered_map_search((zcbor_decoder_t *)zcbor_tstr_expect, state, &(struct zcbo… in decode_inner_map()
1230 …zassert_false(zcbor_unordered_map_search((zcbor_decoder_t *)zcbor_int32_pexpect, state_d, &(int32_… in ZTEST()
1238 ret = zcbor_unordered_map_search((zcbor_decoder_t *)zcbor_int32_pexpect, state_d, &(int32_t){1}); in ZTEST()
1248 …zassert_false(zcbor_unordered_map_search((zcbor_decoder_t *)zcbor_int32_pexpect, state_d2, &(int32… in ZTEST()
1249 ret = zcbor_unordered_map_search((zcbor_decoder_t *)zcbor_int32_pexpect, state_d2, &(int32_t){2}); in ZTEST()
1251 …zassert_false(zcbor_unordered_map_search((zcbor_decoder_t *)zcbor_int32_pexpect, state_d2, &(int32… in ZTEST()
1255 …zassert_false(zcbor_unordered_map_search((zcbor_decoder_t *)zcbor_int32_pexpect, state_d2, &(int32… in ZTEST()
1256 …zassert_true(zcbor_unordered_map_search((zcbor_decoder_t *)zcbor_int32_pexpect, state_d2, &(int32_… in ZTEST()
1267 …zassert_false(zcbor_unordered_map_search((zcbor_decoder_t *)zcbor_int32_pexpect, state_d3, &(int32… in ZTEST()
[all …]
/zcbor-latest/include/
Dzcbor_decode.h205 bool zcbor_unordered_map_search(zcbor_decoder_t key_decoder, zcbor_state_t *state, void *key_result…
/zcbor-latest/src/
Dzcbor_decode.c932 bool zcbor_unordered_map_search(zcbor_decoder_t key_decoder, zcbor_state_t *state, void *key_result) in zcbor_unordered_map_search() function
987 return zcbor_unordered_map_search((zcbor_decoder_t *)zcbor_bstr_expect, state, &zs); in zcbor_search_key_bstr_ptr()
995 return zcbor_unordered_map_search((zcbor_decoder_t *)zcbor_tstr_expect, state, &zs); in zcbor_search_key_tstr_ptr()
/zcbor-latest/
DREADME.md77 It allows using the `zcbor_unordered_map_search()` function to search for elements.