Lines Matching refs:response

42     StringExtractorGDBRemote &response) {  in SendContinuePacketAndWaitForResponse()  argument
44 response.Clear(); in SendContinuePacketAndWaitForResponse()
63 PacketResult read_result = ReadPacket(response, computed_timeout, false); in SendContinuePacketAndWaitForResponse()
95 if (response.Empty()) in SendContinuePacketAndWaitForResponse()
98 const char stop_type = response.GetChar(); in SendContinuePacketAndWaitForResponse()
100 response.GetStringRef().data()); in SendContinuePacketAndWaitForResponse()
115 response.GetHexByteString(inferior_stdout); in SendContinuePacketAndWaitForResponse()
121 llvm::StringRef(response.GetStringRef()).substr(1)); in SendContinuePacketAndWaitForResponse()
124 delegate.HandleAsyncStructuredDataPacket(response.GetStringRef()); in SendContinuePacketAndWaitForResponse()
129 const bool should_stop = ShouldStop(signals, response); in SendContinuePacketAndWaitForResponse()
130 response.SetFilePos(0); in SendContinuePacketAndWaitForResponse()
183 llvm::StringRef payload, StringExtractorGDBRemote &response, in SendPacketAndWaitForResponse() argument
196 return SendPacketAndWaitForResponseNoLock(payload, response); in SendPacketAndWaitForResponse()
201 llvm::StringRef payload, StringExtractorGDBRemote &response, in SendPacketAndReceiveResponseWithOutputSupport() argument
219 return ReadPacketWithOutputSupport(response, GetPacketTimeout(), true, in SendPacketAndReceiveResponseWithOutputSupport()
225 llvm::StringRef payload, StringExtractorGDBRemote &response) { in SendPacketAndWaitForResponseNoLock() argument
232 packet_result = ReadPacket(response, GetPacketTimeout(), true); in SendPacketAndWaitForResponseNoLock()
237 if (response.ValidateResponse()) in SendPacketAndWaitForResponseNoLock()
244 int(payload.size()), payload.data(), response.GetStringRef().data(), in SendPacketAndWaitForResponseNoLock()
254 StringExtractorGDBRemote &response) { in SendvContPacket() argument
271 if (ReadPacket(response, llvm::None, false) == PacketResult::Success) { in SendvContPacket()
272 if (response.IsOKResponse()) in SendvContPacket()
279 StringExtractorGDBRemote &response) { in ShouldStop() argument
295 const uint8_t signo = response.GetHexU8(UINT8_MAX); in ShouldStop()