Lines Matching refs:StringExtractorGDBRemote
1 //===-- StringExtractorGDBRemote.cpp --------------------------------------===//
9 #include "lldb/Utility/StringExtractorGDBRemote.h"
15 constexpr lldb::pid_t StringExtractorGDBRemote::AllProcesses;
16 constexpr lldb::tid_t StringExtractorGDBRemote::AllThreads;
18 StringExtractorGDBRemote::ResponseType
19 StringExtractorGDBRemote::GetResponseType() const {
57 StringExtractorGDBRemote::ServerPacketType
58 StringExtractorGDBRemote::GetServerPacketType() const {
473 bool StringExtractorGDBRemote::IsOKResponse() const {
477 bool StringExtractorGDBRemote::IsUnsupportedResponse() const {
481 bool StringExtractorGDBRemote::IsNormalResponse() const {
485 bool StringExtractorGDBRemote::IsErrorResponse() const {
490 uint8_t StringExtractorGDBRemote::GetError() {
498 lldb_private::Status StringExtractorGDBRemote::GetStatus() {
513 size_t StringExtractorGDBRemote::GetEscapedBinaryData(std::string &str) {
529 const StringExtractorGDBRemote &response) {
531 case StringExtractorGDBRemote::eOK:
532 case StringExtractorGDBRemote::eError:
533 case StringExtractorGDBRemote::eUnsupported:
536 case StringExtractorGDBRemote::eAck:
537 case StringExtractorGDBRemote::eNack:
538 case StringExtractorGDBRemote::eResponse:
545 const StringExtractorGDBRemote &response) {
547 case StringExtractorGDBRemote::eUnsupported:
548 case StringExtractorGDBRemote::eError:
551 case StringExtractorGDBRemote::eOK:
552 case StringExtractorGDBRemote::eAck:
553 case StringExtractorGDBRemote::eNack:
556 case StringExtractorGDBRemote::eResponse:
577 const StringExtractorGDBRemote &response) {
579 case StringExtractorGDBRemote::eUnsupported:
580 case StringExtractorGDBRemote::eError:
583 case StringExtractorGDBRemote::eOK:
584 case StringExtractorGDBRemote::eAck:
585 case StringExtractorGDBRemote::eNack:
588 case StringExtractorGDBRemote::eResponse: {
604 void StringExtractorGDBRemote::CopyResponseValidator(
605 const StringExtractorGDBRemote &rhs) {
610 void StringExtractorGDBRemote::SetResponseValidator(
616 void StringExtractorGDBRemote::SetResponseValidatorToOKErrorNotSupported() {
621 void StringExtractorGDBRemote::SetResponseValidatorToASCIIHexBytes() {
626 void StringExtractorGDBRemote::SetResponseValidatorToJSON() {
631 bool StringExtractorGDBRemote::ValidateResponse() const {
640 StringExtractorGDBRemote::GetPidTid(lldb::pid_t default_pid) {