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
195 return SendPacketAndWaitForResponseNoLock(payload, response); in SendPacketAndWaitForResponse()
200 llvm::StringRef payload, StringExtractorGDBRemote &response, in SendPacketAndReceiveResponseWithOutputSupport() argument
217 return ReadPacketWithOutputSupport(response, GetPacketTimeout(), true, in SendPacketAndReceiveResponseWithOutputSupport()
223 llvm::StringRef payload, StringExtractorGDBRemote &response) { in SendPacketAndWaitForResponseNoLock() argument
230 packet_result = ReadPacket(response, GetPacketTimeout(), true); in SendPacketAndWaitForResponseNoLock()
235 if (response.ValidateResponse()) in SendPacketAndWaitForResponseNoLock()
242 int(payload.size()), payload.data(), response.GetStringRef().data(), in SendPacketAndWaitForResponseNoLock()
251 StringExtractorGDBRemote &response) { in ShouldStop() argument
267 const uint8_t signo = response.GetHexU8(UINT8_MAX); in ShouldStop()