Searched refs:cb_key (Results 1 – 2 of 2) sorted by relevance
/external/cn-cbor/src/ |
D | cn-create.c | 123 cn_cbor *cb_key, cn_cbor *cb_value, in cn_cbor_map_put() argument 127 if(!cb_map || !cb_key || !cb_value || cb_map->type != CN_CBOR_MAP) in cn_cbor_map_put() 133 return _append_kv(cb_map, cb_key, cb_value); in cn_cbor_map_put() 141 cn_cbor* cb_key; in cn_cbor_mapput_int() local 150 cb_key = cn_cbor_int_create(key CBOR_CONTEXT_PARAM, errp); in cn_cbor_mapput_int() 151 if (!cb_key) { return false; } in cn_cbor_mapput_int() 152 return _append_kv(cb_map, cb_key, cb_value); in cn_cbor_mapput_int() 160 cn_cbor* cb_key; in cn_cbor_mapput_string() local 169 cb_key = cn_cbor_string_create(key CBOR_CONTEXT_PARAM, errp); in cn_cbor_mapput_string() 170 if (!cb_key) { return false; } in cn_cbor_mapput_string() [all …]
|
/external/cn-cbor/include/cn-cbor/ |
D | cn-cbor.h | 369 cn_cbor *cb_key, cn_cbor *cb_value,
|