MCPcopy Create free account
hub / github.com/apache/qpid-proton / pn_data_format

Function pn_data_format

c/src/core/codec.c:1250–1257  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1248}
1249
1250int pn_data_format(pn_data_t *data, char *bytes, size_t *size)
1251{
1252 pn_fixed_string_t str = pn_fixed_string(bytes, *size);
1253 pn_data_inspect(data, &str);
1254 pn_fixed_string_terminate(&str);
1255 *size = str.position;
1256 return 0;
1257}
1258
1259static size_t pni_data_id(pn_data_t *data, pni_node_t *node)
1260{

Callers

nothing calls this directly

Calls 3

pn_fixed_stringFunction · 0.85
pn_data_inspectFunction · 0.85

Tested by

no test coverage detected