Lines Matching refs:StringExtractorGDBRemote
14 constexpr lldb::pid_t StringExtractorGDBRemote::AllProcesses;
15 constexpr lldb::tid_t StringExtractorGDBRemote::AllThreads;
17 StringExtractorGDBRemote::ResponseType
18 StringExtractorGDBRemote::GetResponseType() const { in GetResponseType()
56 StringExtractorGDBRemote::ServerPacketType
57 StringExtractorGDBRemote::GetServerPacketType() const { in GetServerPacketType()
449 bool StringExtractorGDBRemote::IsOKResponse() const { in IsOKResponse()
453 bool StringExtractorGDBRemote::IsUnsupportedResponse() const { in IsUnsupportedResponse()
457 bool StringExtractorGDBRemote::IsNormalResponse() const { in IsNormalResponse()
461 bool StringExtractorGDBRemote::IsErrorResponse() const { in IsErrorResponse()
466 uint8_t StringExtractorGDBRemote::GetError() { in GetError()
474 lldb_private::Status StringExtractorGDBRemote::GetStatus() { in GetStatus()
491 size_t StringExtractorGDBRemote::GetEscapedBinaryData(std::string &str) { in GetEscapedBinaryData()
507 const StringExtractorGDBRemote &response) { in OKErrorNotSupportedResponseValidator()
509 case StringExtractorGDBRemote::eOK: in OKErrorNotSupportedResponseValidator()
510 case StringExtractorGDBRemote::eError: in OKErrorNotSupportedResponseValidator()
511 case StringExtractorGDBRemote::eUnsupported: in OKErrorNotSupportedResponseValidator()
514 case StringExtractorGDBRemote::eAck: in OKErrorNotSupportedResponseValidator()
515 case StringExtractorGDBRemote::eNack: in OKErrorNotSupportedResponseValidator()
516 case StringExtractorGDBRemote::eResponse: in OKErrorNotSupportedResponseValidator()
523 const StringExtractorGDBRemote &response) { in JSONResponseValidator()
525 case StringExtractorGDBRemote::eUnsupported: in JSONResponseValidator()
526 case StringExtractorGDBRemote::eError: in JSONResponseValidator()
529 case StringExtractorGDBRemote::eOK: in JSONResponseValidator()
530 case StringExtractorGDBRemote::eAck: in JSONResponseValidator()
531 case StringExtractorGDBRemote::eNack: in JSONResponseValidator()
534 case StringExtractorGDBRemote::eResponse: in JSONResponseValidator()
555 const StringExtractorGDBRemote &response) { in ASCIIHexBytesResponseValidator()
557 case StringExtractorGDBRemote::eUnsupported: in ASCIIHexBytesResponseValidator()
558 case StringExtractorGDBRemote::eError: in ASCIIHexBytesResponseValidator()
561 case StringExtractorGDBRemote::eOK: in ASCIIHexBytesResponseValidator()
562 case StringExtractorGDBRemote::eAck: in ASCIIHexBytesResponseValidator()
563 case StringExtractorGDBRemote::eNack: in ASCIIHexBytesResponseValidator()
566 case StringExtractorGDBRemote::eResponse: { in ASCIIHexBytesResponseValidator()
582 void StringExtractorGDBRemote::CopyResponseValidator( in CopyResponseValidator()
583 const StringExtractorGDBRemote &rhs) { in CopyResponseValidator()
588 void StringExtractorGDBRemote::SetResponseValidator( in SetResponseValidator()
594 void StringExtractorGDBRemote::SetResponseValidatorToOKErrorNotSupported() { in SetResponseValidatorToOKErrorNotSupported()
599 void StringExtractorGDBRemote::SetResponseValidatorToASCIIHexBytes() { in SetResponseValidatorToASCIIHexBytes()
604 void StringExtractorGDBRemote::SetResponseValidatorToJSON() { in SetResponseValidatorToJSON()
609 bool StringExtractorGDBRemote::ValidateResponse() const { in ValidateResponse()
618 StringExtractorGDBRemote::GetPidTid(lldb::pid_t default_pid) { in GetPidTid()