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

Class end_of_buffer

src/common/error_code.h:259–264  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

257 bad_alloc(const std::string& what_arg) : error(errc::bad_alloc, what_arg) {}
258};
259struct end_of_buffer : public error {
260 end_of_buffer() : error(errc::end_of_buffer) {}
261 end_of_buffer(const char* what_arg) : error(errc::end_of_buffer, what_arg) {}
262 end_of_buffer(const std::string& what_arg)
263 : error(errc::end_of_buffer, what_arg) {}
264};
265
266struct malformed_input : public error {
267 malformed_input() : error(errc::malformed_input) {}

Callers 13

copy_outMethod · 0.70
buffer.ccFile · 0.70
operator +=Method · 0.70
operator*Method · 0.70
get_current_ptrMethod · 0.70
is_pointing_same_rawMethod · 0.70
copyMethod · 0.70
copy_deepMethod · 0.70
copy_shallowMethod · 0.70
copy_inMethod · 0.70
substr_ofMethod · 0.70
spliceMethod · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected