Lines Matching defs:data_sp
180 lldb::WritableDataBufferSP &data_sp) {
191 data_sp.reset(new DataBufferHeap(m_reg_data.size(), 0));
192 uint8_t *dst = data_sp->GetBytes();
199 const lldb::DataBufferSP &data_sp) {
202 if (!data_sp) {
204 "NativeRegisterContextFreeBSD_mips64::%s invalid data_sp provided",
209 if (data_sp->GetByteSize() != m_reg_data.size()) {
211 "NativeRegisterContextFreeBSD_mips64::%s data_sp contained mismatched "
213 __FUNCTION__, m_reg_data.size(), data_sp->GetByteSize());
217 const uint8_t *src = data_sp->GetBytes();