MCPcopy Create free account
hub / github.com/ceph/ceph / push_back

Function push_back

src/include/buffer.h:1051–1057  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1049 _num = 0;
1050 }
1051 void push_back(const ptr& bp) {
1052 if (bp.length() == 0)
1053 return;
1054 _buffers.push_back(*ptr_node::create(bp).release());
1055 _len += bp.length();
1056 _num += 1;
1057 }
1058 void push_back(ptr&& bp) {
1059 if (bp.length() == 0)
1060 return;

Callers 10

clone_fromMethod · 0.70
push_backMethod · 0.50
appendMethod · 0.50
decode_base64Method · 0.50
read_fdMethod · 0.50
recv_fdMethod · 0.50
record_tMethod · 0.50
record_group_tMethod · 0.50
do_pgnls_commonFunction · 0.50
nextMethod · 0.50

Calls 6

createFunction · 0.50
lengthMethod · 0.45
push_backMethod · 0.45
releaseMethod · 0.45
getMethod · 0.45
backMethod · 0.45

Tested by

no test coverage detected