Home | History | Annotate | Download | only in Expression

Lines Matching defs:write_error

120         Error write_error;
125 write_error);
127 if (!write_error.Success())
130 write_error.AsCString());
175 Error write_error;
180 write_error);
182 if (!write_error.Success())
184 err.SetErrorStringWithFormat("couldn't write the location of %s to memory: %s", m_persistent_variable_sp->GetName().AsCString(), write_error.AsCString());
453 Error write_error;
454 map.WritePointerToMemory(load_addr, reference_addr, write_error);
456 if (!write_error.Success())
458 err.SetErrorStringWithFormat("couldn't write the contents of reference variable %s to memory: %s", m_variable_sp->GetName().AsCString(), write_error.AsCString());
473 Error write_error;
474 map.WritePointerToMemory(load_addr, addr_of_valobj_addr, write_error);
476 if (!write_error.Success())
478 err.SetErrorStringWithFormat("couldn't write the address of variable %s to memory: %s", m_variable_sp->GetName().AsCString(), write_error.AsCString());
520 Error write_error;
522 map.WriteMemory(m_temporary_allocation, data.GetDataStart(), data.GetByteSize(), write_error);
524 if (!write_error.Success())
526 err.SetErrorStringWithFormat("couldn't write to the temporary region for %s: %s", m_variable_sp->GetName().AsCString(), write_error.AsCString());
1169 Error write_error;
1171 map.WriteMemory(load_addr, register_data.GetDataStart(), register_data.GetByteSize(), write_error);
1173 if (!write_error.Success())
1175 err.SetErrorStringWithFormat("couldn't write the contents of register %s: %s", m_register_info.name, write_error.AsCString());