Searched defs:KStringPtrImpl (Results 1 – 1 of 1) sorted by relevance
24 struct KStringPtrImpl { struct25 KStringPtrImpl(const char* str) : _value(nullptr), _owned(true) { in KStringPtrImpl() function29 KStringPtrImpl(const char* str, int len, bool owned) : _value(nullptr), _owned(owned) { in KStringPtrImpl() function32 KStringPtrImpl() : _value(nullptr), _length(0), _owned(true) {} in KStringPtrImpl() function35 KStringPtrImpl& operator=(const KStringPtrImpl& other) = delete; argument37 KStringPtrImpl(KStringPtrImpl&& other) { in KStringPtrImpl() argument44 ~KStringPtrImpl() { if (_value && _owned) free(_value); } in ~KStringPtrImpl() argument46 bool isNull() const { return _value == nullptr; } in isNull()47 const char* c_str() const { return _value; } in c_str()48 char* data() const { return _value; } in data()[all …]