Lines Matching refs:fCharsSize
50 fCharsSize(0) in BKeymap()
95 if (stream.Read(&fCharsSize, sizeof(uint32)) < 1) in SetTo()
98 fCharsSize = B_BENDIAN_TO_HOST_INT32(fCharsSize); in SetTo()
99 if (fCharsSize > 16 * 1024) { in SetTo()
105 fChars = new char[fCharsSize]; in SetTo()
107 if (stream.Read(fChars, fCharsSize) != (ssize_t)fCharsSize) { in SetTo()
131 fCharsSize = (uint32)charsSize; in SetToCurrent()
146 fCharsSize = kSystemKeyCharsSize; in SetToDefault()
149 fChars = new (std::nothrow) char[fCharsSize]; in SetToDefault()
155 memcpy(fChars, kSystemKeyChars, fCharsSize); in SetToDefault()
169 fCharsSize = 0; in Unset()
490 return fCharsSize == other.fCharsSize in operator ==()
492 && !memcmp(fChars, other.fChars, fCharsSize); in operator ==()
508 fCharsSize = other.fCharsSize; in operator =()
509 fChars = new char[fCharsSize]; in operator =()
510 memcpy(fChars, other.fChars, fCharsSize); in operator =()
568 if (offset >= (int32)fCharsSize) in Offset()