reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

tools/lldb/source/Plugins/Platform/gdb-server/PlatformRemoteGDBServer.cpp
  728   auto object_sp = StructuredData::ParseJSON(response.GetStringRef());
tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteClientBase.cpp
   75               response.GetStringRef().data());
   96           llvm::StringRef(response.GetStringRef()).substr(1));
   99       delegate.HandleAsyncStructuredDataPacket(response.GetStringRef());
  217         int(payload.size()), payload.data(), response.GetStringRef().data(),
tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunication.cpp
  351                 if (response_regex.Execute(echo_response.GetStringRef())) {
 1338       const char *pdata = packet.GetStringRef().data();
tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.cpp
  354     const char *response_cstr = response.GetStringRef().data();
  468       const char *response_cstr = response.GetStringRef().data();
  573         object_sp = StructuredData::ParseJSON(response.GetStringRef());
  685     const std::string &this_string = this_response.GetStringRef();
  757       error_str = response.GetStringRef().substr(1);
 2248             response.GetStringRef().size())
 2275             response.GetStringRef().size())
 2536       StructuredData::ParseJSON(response.GetStringRef());
 3214       new DataBufferHeap(response.GetStringRef().size() / 2, 0));
 3229       new DataBufferHeap(response.GetStringRef().size() / 2, 0));
 3667       StructuredData::ParseJSON(response.GetStringRef());
 3722     const std::string &str = chunk.GetStringRef();
 3827           llvm::StringRef response_str(response.GetStringRef());
 3936           StructuredData::ParseJSON(response.GetStringRef());
 3945                   __FUNCTION__, response.GetStringRef().data());
 4023     if (strcmp(response.GetStringRef().data(), "OK") == 0) {
 4030                                      response.GetStringRef().data());
tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationReplayServer.cpp
  114   if (skip(packet.GetStringRef()))
  119   if (packet.GetStringRef() == "QStartNoAckMode")
  125   if (packet.GetStringRef().find("QEnvironment") == 0)
  140       if (unexpected(entry.packet.data, packet.GetStringRef())) {
  145                  packet.GetStringRef());
  164           packet.GetStringRef());
  170              packet.GetStringRef(), entry.packet.data);
tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServer.cpp
   62       packet_result = SendUnimplementedResponse(packet.GetStringRef().data());
   68         packet_result = SendUnimplementedResponse(packet.GetStringRef().data());
  142             __FUNCTION__, failed_packet.GetStringRef().data(),
tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerCommon.cpp
 1065   return SendPacketNoLock(packet.GetStringRef());
tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerLLGS.cpp
 1383       return SendUnimplementedResponse(packet.GetStringRef().data());
 1447     return SendUnimplementedResponse(packet.GetStringRef().data());
 1968               __FUNCTION__, packet.GetStringRef().data());
 2048               __FUNCTION__, packet.GetStringRef().data());
 2798   StringRef(packet.GetStringRef()).split(fields, ':', 4);
 3068               __FUNCTION__, packet.GetStringRef().data());
 3243               __FUNCTION__, packet.GetStringRef().data());
 3256               __FUNCTION__, packet.GetStringRef().data());
tools/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp
 1604         const std::string &stop_info_str = stop_info.GetStringRef();
 1795             reg_value_extractor.GetStringRef().size() / 2, 0));
 2132                   const size_t byte_size = bytes.GetStringRef().size() / 2;
 2610                     response.GetStringRef().data());
 2612           exit_string.append(response.GetStringRef());
 2641       response.GetStringRef().find(";reason:exec;") != std::string::npos;
 2758         memcpy(buf, response.GetStringRef().data(), data_received_size);
 2772           packet, response.GetStringRef().data());
 2882             packet.GetData(), response.GetStringRef().data());
 2910             response.GetStringRef().data());
 2973           packet.GetData(), response.GetStringRef().data());
 3669   const std::string &pkt = packet.GetStringRef();
 4051           object_sp = StructuredData::ParseJSON(response.GetStringRef());
 4123           object_sp = StructuredData::ParseJSON(response.GetStringRef());
 4156           object_sp = StructuredData::ParseJSON(response.GetStringRef());
 5295         std::string response_str = response.GetStringRef();
 5304           output_strm.Printf("response: %s\n", response.GetStringRef().data());
 5348       const std::string &response_str = response.GetStringRef();
 5353         output_strm.Printf("response: %s\n", response.GetStringRef().data());
tools/lldb/source/Utility/StringExtractor.cpp
  257   llvm::StringRef S = GetStringRef();
tools/lldb/source/Utility/StringExtractorGDBRemote.cpp
  529     switch (response.GetStringRef()[0]) {
  557     for (const char ch : response.GetStringRef()) {
tools/lldb/unittests/Process/gdb-remote/GDBRemoteClientBaseTest.cpp
   83   ASSERT_EQ("T01", response.GetStringRef());
   85   ASSERT_EQ("c", response.GetStringRef());
   90   ASSERT_EQ("W01", response.GetStringRef());
   92   ASSERT_EQ("c", response.GetStringRef());
   97   ASSERT_EQ("X01", response.GetStringRef());
   99   ASSERT_EQ("c", response.GetStringRef());
  112   ASSERT_EQ("c", response.GetStringRef());
  120   ASSERT_EQ("\x03", response.GetStringRef());
  125   ASSERT_EQ("C47", response.GetStringRef());
  131   ASSERT_EQ("T47", continue_response.GetStringRef());
  142   ASSERT_EQ("c", response.GetStringRef());
  157   ASSERT_EQ("\x03", response.GetStringRef());
  162   ASSERT_EQ("qTest2", response.GetStringRef());
  167   ASSERT_EQ("QTest2", async_response.GetStringRef());
  171   ASSERT_EQ("c", response.GetStringRef());
  174   ASSERT_EQ("T01", continue_response.GetStringRef());
  187   ASSERT_EQ("c", response.GetStringRef());
  195   ASSERT_EQ("\x03", response.GetStringRef());
  200   ASSERT_EQ("T13", continue_response.GetStringRef());
  211   ASSERT_EQ("c", response.GetStringRef());
  220   ASSERT_EQ("\x03", response.GetStringRef());
  223   ASSERT_EQ("T01", continue_response.GetStringRef());
  229   ASSERT_EQ("T01", response.GetStringRef());
  231   ASSERT_EQ("c", response.GetStringRef());
  245   ASSERT_EQ("c", response.GetStringRef());
  253   ASSERT_EQ("\x03", response.GetStringRef());
  259   ASSERT_EQ("T13", continue_response.GetStringRef());
  268   ASSERT_EQ("qTest", response.GetStringRef());
  271   ASSERT_EQ("QTest", async_response.GetStringRef());
  285   ASSERT_EQ("T01", response.GetStringRef());
  287   ASSERT_EQ("c", response.GetStringRef());
  313   ASSERT_EQ("T01", response.GetStringRef());
  328   ASSERT_EQ("c", response.GetStringRef());
  336   ASSERT_EQ("\x03", response.GetStringRef());
  359   ASSERT_EQ("OK", response.GetStringRef());
tools/lldb/unittests/Process/gdb-remote/GDBRemoteCommunicationClientTest.cpp
   38   ASSERT_EQ("QThreadSuffixSupported", request.GetStringRef());
   50   ASSERT_THAT(request.GetStringRef(), expected);
  276       StringRef ref = request.GetStringRef();
tools/lldb/unittests/Process/gdb-remote/GDBRemoteCommunicationTest.cpp
   64     ASSERT_EQ(Test.Payload, response.GetStringRef());
tools/lldb/unittests/Utility/StringExtractorTest.cpp
   16   ASSERT_EQ(kEmptyString, ex.GetStringRef());
   28   ASSERT_EQ(kInitMiscString, ex.GetStringRef());
tools/lldb/unittests/tools/lldb-server/tests/TestClient.cpp
  263                   message, result, R.GetStringRef())