Searched refs:cb_key (Results 1 – 2 of 2) sorted by relevance
/external/cn-cbor/src/ |
D | cn-create.c | 95 cn_cbor *cb_key, cn_cbor *cb_value, in cn_cbor_map_put() argument 99 if(!cb_map || !cb_key || !cb_value || cb_map->type != CN_CBOR_MAP) in cn_cbor_map_put() 105 return _append_kv(cb_map, cb_key, cb_value); in cn_cbor_map_put() 113 cn_cbor* cb_key; in cn_cbor_mapput_int() local 122 cb_key = cn_cbor_int_create(key CBOR_CONTEXT_PARAM, errp); in cn_cbor_mapput_int() 123 if (!cb_key) { return false; } in cn_cbor_mapput_int() 124 return _append_kv(cb_map, cb_key, cb_value); in cn_cbor_mapput_int() 132 cn_cbor* cb_key; in cn_cbor_mapput_string() local 141 cb_key = cn_cbor_string_create(key CBOR_CONTEXT_PARAM, errp); in cn_cbor_mapput_string() 142 if (!cb_key) { return false; } in cn_cbor_mapput_string() [all …]
|
/external/cn-cbor/include/cn-cbor/ |
D | cn-cbor.h | 338 cn_cbor *cb_key, cn_cbor *cb_value,
|