Home
last modified time | relevance | path

Searched refs:eError (Results 1 – 3 of 3) sorted by relevance

/freebsd-12.1/contrib/llvm/tools/lldb/source/Utility/
H A DStringExtractorGDBRemote.cpp24 return eError; in GetResponseType()
31 return eError; in GetResponseType()
454 return GetResponseType() == eError && isxdigit(m_packet[1]) && in IsErrorResponse()
459 if (GetResponseType() == eError) { in GetError()
468 if (GetResponseType() == eError) { in GetStatus()
502 case StringExtractorGDBRemote::eError: in OKErrorNotSupportedResponseValidator()
518 case StringExtractorGDBRemote::eError: in JSONResponseValidator()
550 case StringExtractorGDBRemote::eError: in ASCIIHexBytesResponseValidator()
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Utility/
H A DStringExtractorGDBRemote.h179 enum ResponseType { eUnsupported = 0, eAck, eNack, eError, eOK, eResponse }; enumerator
/freebsd-12.1/contrib/sqlite3/
H A Dsqlite3.c28227 static void setStrAccumError(StrAccum *p, u8 eError){
28228 assert( eError==SQLITE_NOMEM || eError==SQLITE_TOOBIG );
28229 p->accError = eError;
28231 if( eError==SQLITE_TOOBIG ) sqlite3ErrorToParser(p->db, eError);