• Home
  • Raw
  • Download

Lines Matching +refs:clang +refs:format +refs:buffer

526clang::TypeDecl *tdecl = target->GetPersistentVariables().GetPersistentType(ConstString(lookup_typ…  in DoExecute()
732 std::string buffer; in DoExecute() local
733 buffer.resize(item_byte_size+1,0); in DoExecute()
735 … size_t read = target->ReadCStringFromMemory(data_addr, &buffer[0], item_byte_size+1, error); in DoExecute()
748 memcpy(data_ptr, &buffer[0], read); in DoExecute()
833 Format format = m_format_options.GetFormat(); in DoExecute() local
834 if (format != eFormatDefault) in DoExecute()
835 valobj_sp->SetFormat (format); in DoExecute()
837 … ValueObject::DumpValueObjectOptions options(m_varobj_options.GetAsDumpOptions(false,format)); in DoExecute()
860 Format format = m_format_options.GetFormat(); in DoExecute() local
861 if ( ( (format == eFormatChar) || (format == eFormatCharPrintable) ) in DoExecute()
869 format = eFormatCharArray; in DoExecute()
877 format, in DoExecute()
1096 StreamString buffer (Stream::eBinary, in DoExecute() local
1160 item_byte_size = buffer.GetAddressByteSize(); in DoExecute()
1226 buffer.PutMaxHex64 (uval64, item_byte_size); in DoExecute()
1237 buffer.PutMaxHex64 (uval64, item_byte_size); in DoExecute()
1254 buffer.PutMaxHex64 (uval64, item_byte_size); in DoExecute()
1294 buffer.PutMaxHex64 (sval64, item_byte_size); in DoExecute()
1311 buffer.PutMaxHex64 (uval64, item_byte_size); in DoExecute()
1328 buffer.PutMaxHex64 (uval64, item_byte_size); in DoExecute()
1333 if (!buffer.GetString().empty()) in DoExecute()
1336 …if (process->WriteMemory (addr, buffer.GetString().c_str(), buffer.GetString().size(), error) == b… in DoExecute()