Lines Matching refs:response

41     StringExtractorGDBRemote &response) {  in SendContinuePacketAndWaitForResponse()  argument
43 response.Clear(); in SendContinuePacketAndWaitForResponse()
62 PacketResult read_result = ReadPacket(response, computed_timeout, false); in SendContinuePacketAndWaitForResponse()
94 if (response.Empty()) in SendContinuePacketAndWaitForResponse()
97 const char stop_type = response.GetChar(); in SendContinuePacketAndWaitForResponse()
99 response.GetStringRef().data()); in SendContinuePacketAndWaitForResponse()
114 response.GetHexByteString(inferior_stdout); in SendContinuePacketAndWaitForResponse()
120 llvm::StringRef(response.GetStringRef()).substr(1)); in SendContinuePacketAndWaitForResponse()
123 delegate.HandleAsyncStructuredDataPacket(response.GetStringRef()); in SendContinuePacketAndWaitForResponse()
128 const bool should_stop = ShouldStop(signals, response); in SendContinuePacketAndWaitForResponse()
129 response.SetFilePos(0); in SendContinuePacketAndWaitForResponse()
182 llvm::StringRef payload, StringExtractorGDBRemote &response, in SendPacketAndWaitForResponse() argument
194 return SendPacketAndWaitForResponseNoLock(payload, response); in SendPacketAndWaitForResponse()
199 StringExtractorGDBRemote &response, Timeout<std::micro> timeout, in ReadPacketWithOutputSupport() argument
202 auto result = ReadPacket(response, timeout, sync_on_timeout); in ReadPacketWithOutputSupport()
203 while (result == PacketResult::Success && response.IsNormalResponse() && in ReadPacketWithOutputSupport()
204 response.PeekChar() == 'O') { in ReadPacketWithOutputSupport()
205 response.GetChar(); in ReadPacketWithOutputSupport()
207 if (response.GetHexByteString(output)) in ReadPacketWithOutputSupport()
209 result = ReadPacket(response, timeout, sync_on_timeout); in ReadPacketWithOutputSupport()
216 llvm::StringRef payload, StringExtractorGDBRemote &response, in SendPacketAndReceiveResponseWithOutputSupport() argument
233 return ReadPacketWithOutputSupport(response, GetPacketTimeout(), true, in SendPacketAndReceiveResponseWithOutputSupport()
239 llvm::StringRef payload, StringExtractorGDBRemote &response) { in SendPacketAndWaitForResponseNoLock() argument
246 packet_result = ReadPacket(response, GetPacketTimeout(), true); in SendPacketAndWaitForResponseNoLock()
251 if (response.ValidateResponse()) in SendPacketAndWaitForResponseNoLock()
258 int(payload.size()), payload.data(), response.GetStringRef().data(), in SendPacketAndWaitForResponseNoLock()
267 StringExtractorGDBRemote &response) { in ShouldStop() argument
283 const uint8_t signo = response.GetHexU8(UINT8_MAX); in ShouldStop()