| 539 | |
| 540 | const char *buffer::ptr::raw_c_str() const { ceph_assert(_raw); return _raw->get_data(); } |
| 541 | unsigned buffer::ptr::raw_length() const { ceph_assert(_raw); return _raw->get_len(); } |
| 542 | int buffer::ptr::raw_nref() const { ceph_assert(_raw); return _raw->nref; } |
| 543 | |
| 544 | void buffer::ptr::copy_out(unsigned o, unsigned l, char *dest) const { |