| 512 | return _raw->get_data() + _off; |
| 513 | } |
| 514 | const char *buffer::ptr::end_c_str() const { |
| 515 | ceph_assert(_raw); |
| 516 | return _raw->get_data() + _off + _len; |
| 517 | } |
| 518 | char *buffer::ptr::end_c_str() { |
| 519 | ceph_assert(_raw); |
| 520 | return _raw->get_data() + _off + _len; |
no test coverage detected