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

Function pn_buffer_memory

c/src/core/buffer.c:253–260  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

251}
252
253pn_rwbytes_t pn_buffer_memory(pn_buffer_t *buf)
254{
255 if (!buf) {
256 return (pn_rwbytes_t){0, NULL};
257 }
258 pn_buffer_defrag(buf);
259 return (pn_rwbytes_t){.size=buf->size, .start=buf->bytes};
260}

Callers 3

pni_data_intern_nodeFunction · 0.85
pni_pump_inFunction · 0.85
pn_messenger_putFunction · 0.85

Calls 1

pn_buffer_defragFunction · 0.85

Tested by

no test coverage detected