Lines Matching refs:StringExtractorGDBRemote
15 constexpr lldb::pid_t StringExtractorGDBRemote::AllProcesses;
16 constexpr lldb::tid_t StringExtractorGDBRemote::AllThreads;
18 StringExtractorGDBRemote::ResponseType
19 StringExtractorGDBRemote::GetResponseType() const { in GetResponseType()
57 StringExtractorGDBRemote::ServerPacketType
58 StringExtractorGDBRemote::GetServerPacketType() const { in GetServerPacketType()
473 bool StringExtractorGDBRemote::IsOKResponse() const { in IsOKResponse()
477 bool StringExtractorGDBRemote::IsUnsupportedResponse() const { in IsUnsupportedResponse()
481 bool StringExtractorGDBRemote::IsNormalResponse() const { in IsNormalResponse()
485 bool StringExtractorGDBRemote::IsErrorResponse() const { in IsErrorResponse()
490 uint8_t StringExtractorGDBRemote::GetError() { in GetError()
498 lldb_private::Status StringExtractorGDBRemote::GetStatus() { in GetStatus()
515 size_t StringExtractorGDBRemote::GetEscapedBinaryData(std::string &str) { in GetEscapedBinaryData()
531 const StringExtractorGDBRemote &response) { in OKErrorNotSupportedResponseValidator()
533 case StringExtractorGDBRemote::eOK: in OKErrorNotSupportedResponseValidator()
534 case StringExtractorGDBRemote::eError: in OKErrorNotSupportedResponseValidator()
535 case StringExtractorGDBRemote::eUnsupported: in OKErrorNotSupportedResponseValidator()
538 case StringExtractorGDBRemote::eAck: in OKErrorNotSupportedResponseValidator()
539 case StringExtractorGDBRemote::eNack: in OKErrorNotSupportedResponseValidator()
540 case StringExtractorGDBRemote::eResponse: in OKErrorNotSupportedResponseValidator()
547 const StringExtractorGDBRemote &response) { in JSONResponseValidator()
549 case StringExtractorGDBRemote::eUnsupported: in JSONResponseValidator()
550 case StringExtractorGDBRemote::eError: in JSONResponseValidator()
553 case StringExtractorGDBRemote::eOK: in JSONResponseValidator()
554 case StringExtractorGDBRemote::eAck: in JSONResponseValidator()
555 case StringExtractorGDBRemote::eNack: in JSONResponseValidator()
558 case StringExtractorGDBRemote::eResponse: in JSONResponseValidator()
579 const StringExtractorGDBRemote &response) { in ASCIIHexBytesResponseValidator()
581 case StringExtractorGDBRemote::eUnsupported: in ASCIIHexBytesResponseValidator()
582 case StringExtractorGDBRemote::eError: in ASCIIHexBytesResponseValidator()
585 case StringExtractorGDBRemote::eOK: in ASCIIHexBytesResponseValidator()
586 case StringExtractorGDBRemote::eAck: in ASCIIHexBytesResponseValidator()
587 case StringExtractorGDBRemote::eNack: in ASCIIHexBytesResponseValidator()
590 case StringExtractorGDBRemote::eResponse: { in ASCIIHexBytesResponseValidator()
606 void StringExtractorGDBRemote::CopyResponseValidator( in CopyResponseValidator()
607 const StringExtractorGDBRemote &rhs) { in CopyResponseValidator()
612 void StringExtractorGDBRemote::SetResponseValidator( in SetResponseValidator()
618 void StringExtractorGDBRemote::SetResponseValidatorToOKErrorNotSupported() { in SetResponseValidatorToOKErrorNotSupported()
623 void StringExtractorGDBRemote::SetResponseValidatorToASCIIHexBytes() { in SetResponseValidatorToASCIIHexBytes()
628 void StringExtractorGDBRemote::SetResponseValidatorToJSON() { in SetResponseValidatorToJSON()
633 bool StringExtractorGDBRemote::ValidateResponse() const { in ValidateResponse()
642 StringExtractorGDBRemote::GetPidTid(lldb::pid_t default_pid) { in GetPidTid()