MCPcopy Index your code
hub / github.com/RsyncProject/rsync / alloc_xbuf

Function alloc_xbuf

ifuncs.h:19–25  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

17 */
18
19static inline void
20alloc_xbuf(xbuf *xb, size_t sz)
21{
22 xb->buf = new_array(char, sz);
23 xb->size = sz;
24 xb->len = xb->pos = 0;
25}
26
27static inline void
28realloc_xbuf(xbuf *xb, size_t sz)

Callers 6

io_start_buffering_outFunction · 0.85
io_start_buffering_inFunction · 0.85
io_start_multiplex_outFunction · 0.85
iconvbufsFunction · 0.85
send_protected_argsFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected