Lines Matching refs:StringExtractorGDBRemote
14 StringExtractorGDBRemote::ResponseType
15 StringExtractorGDBRemote::GetResponseType() const { in GetResponseType()
53 StringExtractorGDBRemote::ServerPacketType
54 StringExtractorGDBRemote::GetServerPacketType() const { in GetServerPacketType()
442 bool StringExtractorGDBRemote::IsOKResponse() const { in IsOKResponse()
446 bool StringExtractorGDBRemote::IsUnsupportedResponse() const { in IsUnsupportedResponse()
450 bool StringExtractorGDBRemote::IsNormalResponse() const { in IsNormalResponse()
454 bool StringExtractorGDBRemote::IsErrorResponse() const { in IsErrorResponse()
459 uint8_t StringExtractorGDBRemote::GetError() { in GetError()
467 lldb_private::Status StringExtractorGDBRemote::GetStatus() { in GetStatus()
484 size_t StringExtractorGDBRemote::GetEscapedBinaryData(std::string &str) { in GetEscapedBinaryData()
500 const StringExtractorGDBRemote &response) { in OKErrorNotSupportedResponseValidator()
502 case StringExtractorGDBRemote::eOK: in OKErrorNotSupportedResponseValidator()
503 case StringExtractorGDBRemote::eError: in OKErrorNotSupportedResponseValidator()
504 case StringExtractorGDBRemote::eUnsupported: in OKErrorNotSupportedResponseValidator()
507 case StringExtractorGDBRemote::eAck: in OKErrorNotSupportedResponseValidator()
508 case StringExtractorGDBRemote::eNack: in OKErrorNotSupportedResponseValidator()
509 case StringExtractorGDBRemote::eResponse: in OKErrorNotSupportedResponseValidator()
516 const StringExtractorGDBRemote &response) { in JSONResponseValidator()
518 case StringExtractorGDBRemote::eUnsupported: in JSONResponseValidator()
519 case StringExtractorGDBRemote::eError: in JSONResponseValidator()
522 case StringExtractorGDBRemote::eOK: in JSONResponseValidator()
523 case StringExtractorGDBRemote::eAck: in JSONResponseValidator()
524 case StringExtractorGDBRemote::eNack: in JSONResponseValidator()
527 case StringExtractorGDBRemote::eResponse: in JSONResponseValidator()
548 const StringExtractorGDBRemote &response) { in ASCIIHexBytesResponseValidator()
550 case StringExtractorGDBRemote::eUnsupported: in ASCIIHexBytesResponseValidator()
551 case StringExtractorGDBRemote::eError: in ASCIIHexBytesResponseValidator()
554 case StringExtractorGDBRemote::eOK: in ASCIIHexBytesResponseValidator()
555 case StringExtractorGDBRemote::eAck: in ASCIIHexBytesResponseValidator()
556 case StringExtractorGDBRemote::eNack: in ASCIIHexBytesResponseValidator()
559 case StringExtractorGDBRemote::eResponse: { in ASCIIHexBytesResponseValidator()
575 void StringExtractorGDBRemote::CopyResponseValidator( in CopyResponseValidator()
576 const StringExtractorGDBRemote &rhs) { in CopyResponseValidator()
581 void StringExtractorGDBRemote::SetResponseValidator( in SetResponseValidator()
587 void StringExtractorGDBRemote::SetResponseValidatorToOKErrorNotSupported() { in SetResponseValidatorToOKErrorNotSupported()
592 void StringExtractorGDBRemote::SetResponseValidatorToASCIIHexBytes() { in SetResponseValidatorToASCIIHexBytes()
597 void StringExtractorGDBRemote::SetResponseValidatorToJSON() { in SetResponseValidatorToJSON()
602 bool StringExtractorGDBRemote::ValidateResponse() const { in ValidateResponse()