Searched refs:aCString (Results 1 – 3 of 3) sorted by relevance
42 Error String::Set(const char *aCString) in Set() argument48 VerifyOrExit(aCString != nullptr, Free()); in Set()51 newSize = strlen(aCString) + 1; in Set()63 memcpy(mStringBuffer, aCString, newSize); in Set()87 bool String::operator==(const char *aCString) const in operator ==()91 …VerifyOrExit((aCString != nullptr) && (mStringBuffer != nullptr), isEqual = (mStringBuffer == aCSt… in operator ==()92 isEqual = (strcmp(mStringBuffer, aCString) == 0); in operator ==()
112 Error Set(const char *aCString);154 bool operator==(const char *aCString) const;165 bool operator!=(const char *aCString) const { return !(*this == aCString); } in operator !=()
79 …bool operator!=(const char *aCString) const { return (aCString == nullptr) ? true : strcmp(m8, aCS… in operator !=()