Home
last modified time | relevance | path

Searched refs:func (Results 1 – 5 of 5) sorted by relevance

/zcbor-latest/samples/pet/src/
Dpet_decode.c23 #define log_result(state, result, func) do { \ argument
26 zcbor_log("%s error: %s\r\n", func, zcbor_error_str(zcbor_peek_error(state))); \
28 zcbor_log("%s success\r\n", func); \
Dpet_encode.c23 #define log_result(state, result, func) do { \ argument
26 zcbor_log("%s error: %s\r\n", func, zcbor_error_str(zcbor_peek_error(state))); \
28 zcbor_log("%s success\r\n", func); \
/zcbor-latest/zcbor/
Dzcbor.py158 def xcode_statement(func, *sargs, **kwargs): argument
160 if func is None:
162 return "(%s(%s))" % (func, xcode_args(*sargs, **kwargs))
2237 func = "zcbor_any_skip"
2239 func = f"{func_prefix}_decode"
2241 func = f"{func_prefix}_{'pexpect' if ptr_variant else 'expect'}"
2245 func = f"{func_prefix}_expect_union"
2250 func = "zcbor_nil_put"
2252 func = f"{func_prefix}_encode"
2254 func = f"{func_prefix}_put"
[all …]
/zcbor-latest/src/
Dzcbor_common.c303 void *result, size_t *payload_len_out, zcbor_state_t *state, zcbor_decoder_t func, in zcbor_entry_function() argument
308 bool ret = func(state, result); in zcbor_entry_function()
/zcbor-latest/include/
Dzcbor_common.h344 void *result, size_t *payload_len_out, zcbor_state_t *state, zcbor_decoder_t func,