Lines Matching refs:StringExtractorGDBRemote
15 StringExtractorGDBRemote::ResponseType
16 StringExtractorGDBRemote::GetResponseType() const { in GetResponseType()
54 StringExtractorGDBRemote::ServerPacketType
55 StringExtractorGDBRemote::GetServerPacketType() const { in GetServerPacketType()
441 bool StringExtractorGDBRemote::IsOKResponse() const { in IsOKResponse()
445 bool StringExtractorGDBRemote::IsUnsupportedResponse() const { in IsUnsupportedResponse()
449 bool StringExtractorGDBRemote::IsNormalResponse() const { in IsNormalResponse()
453 bool StringExtractorGDBRemote::IsErrorResponse() const { in IsErrorResponse()
458 uint8_t StringExtractorGDBRemote::GetError() { in GetError()
466 lldb_private::Status StringExtractorGDBRemote::GetStatus() { in GetStatus()
483 size_t StringExtractorGDBRemote::GetEscapedBinaryData(std::string &str) { in GetEscapedBinaryData()
499 const StringExtractorGDBRemote &response) { in OKErrorNotSupportedResponseValidator()
501 case StringExtractorGDBRemote::eOK: in OKErrorNotSupportedResponseValidator()
502 case StringExtractorGDBRemote::eError: in OKErrorNotSupportedResponseValidator()
503 case StringExtractorGDBRemote::eUnsupported: in OKErrorNotSupportedResponseValidator()
506 case StringExtractorGDBRemote::eAck: in OKErrorNotSupportedResponseValidator()
507 case StringExtractorGDBRemote::eNack: in OKErrorNotSupportedResponseValidator()
508 case StringExtractorGDBRemote::eResponse: in OKErrorNotSupportedResponseValidator()
515 const StringExtractorGDBRemote &response) { in JSONResponseValidator()
517 case StringExtractorGDBRemote::eUnsupported: in JSONResponseValidator()
518 case StringExtractorGDBRemote::eError: in JSONResponseValidator()
521 case StringExtractorGDBRemote::eOK: in JSONResponseValidator()
522 case StringExtractorGDBRemote::eAck: in JSONResponseValidator()
523 case StringExtractorGDBRemote::eNack: in JSONResponseValidator()
526 case StringExtractorGDBRemote::eResponse: in JSONResponseValidator()
547 const StringExtractorGDBRemote &response) { in ASCIIHexBytesResponseValidator()
549 case StringExtractorGDBRemote::eUnsupported: in ASCIIHexBytesResponseValidator()
550 case StringExtractorGDBRemote::eError: in ASCIIHexBytesResponseValidator()
553 case StringExtractorGDBRemote::eOK: in ASCIIHexBytesResponseValidator()
554 case StringExtractorGDBRemote::eAck: in ASCIIHexBytesResponseValidator()
555 case StringExtractorGDBRemote::eNack: in ASCIIHexBytesResponseValidator()
558 case StringExtractorGDBRemote::eResponse: { in ASCIIHexBytesResponseValidator()
574 void StringExtractorGDBRemote::CopyResponseValidator( in CopyResponseValidator()
575 const StringExtractorGDBRemote &rhs) { in CopyResponseValidator()
580 void StringExtractorGDBRemote::SetResponseValidator( in SetResponseValidator()
586 void StringExtractorGDBRemote::SetResponseValidatorToOKErrorNotSupported() { in SetResponseValidatorToOKErrorNotSupported()
591 void StringExtractorGDBRemote::SetResponseValidatorToASCIIHexBytes() { in SetResponseValidatorToASCIIHexBytes()
596 void StringExtractorGDBRemote::SetResponseValidatorToJSON() { in SetResponseValidatorToJSON()
601 bool StringExtractorGDBRemote::ValidateResponse() const { in ValidateResponse()