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

Method debug

src/test/common/ObjectContents.h:100–111  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

98 bool exists() { return _exists; }
99
100 void debug(std::ostream &out) {
101 out << "_size is " << _size << std::endl;
102 out << "seeds is: (";
103 for (std::map<uint64_t, unsigned int>::iterator i = seeds.begin();
104 i != seeds.end();
105 ++i) {
106 out << "[" << i->first << "," << i->second << "], ";
107 }
108 out << ")" << std::endl;
109 out << "written is " << written << std::endl;
110 out << "_exists is " << _exists << std::endl;
111 }
112
113 void encode(bufferlist &bl) const {
114 using ceph::encode;

Callers 15

test_object_contentsFunction · 0.45
socket_connectFunction · 0.45
dispatch_socketsMethod · 0.45
dispatch_writeMethod · 0.45
dispatch_readMethod · 0.45
dispatch_rw_boundedMethod · 0.45
dispatch_rw_unboundedMethod · 0.45
test_shutdown_propagatedFunction · 0.45
rm_key_rangeMethod · 0.45
listMethod · 0.45

Calls 2

beginMethod · 0.45
endMethod · 0.45

Tested by

no test coverage detected