Lines Matching defs:m_psz

73         : m_psz(NULL),
90 copyFromN(a_rSrc.m_psz, a_rSrc.m_cch);
118 copyFromN(&a_rSrc.m_psz[a_offSrc], RT_MIN(a_cchSrc, a_rSrc.m_cch - a_offSrc));
121 m_psz = NULL;
150 : m_psz(NULL),
158 memset(m_psz, a_ch, a_cTimes);
159 m_psz[a_cTimes] = '\0';
175 : m_psz(NULL),
216 return m_psz ? RTStrUniLen(m_psz) : 0;
250 int vrc = RTStrRealloc(&m_psz, cb);
282 if (m_psz != pcsz)
305 copyFromN(s.m_psz, s.m_cch);
429 ::RTStrToUpper(m_psz);
430 size_t cchNew = strlen(m_psz);
448 ::RTStrToLower(m_psz);
449 size_t cchNew = strlen(m_psz);
469 return m_psz[i];
482 return (m_psz) ? m_psz : "";
499 return m_psz;
512 if (m_psz)
514 m_cch = strlen(m_psz);
571 /* This klugde is for m_cch=0 and m_psz=NULL. pcsz=NULL and psz=""
577 return ::RTStrCmp(m_psz, pcszThat);
578 return ::RTStrICmp(m_psz, pcszThat);
592 return ::RTStrCmp(m_psz, that.m_psz);
593 return ::RTStrICmp(m_psz, that.m_psz);
605 && memcmp(that.m_psz, m_psz, length()) == 0;
616 /* This klugde is for m_cch=0 and m_psz=NULL. pcsz=NULL and psz=""
620 return RTStrCmp(pszThat, m_psz) == 0;
633 return RTStrICmp(that.m_psz, m_psz) == 0;
644 /* This klugde is for m_cch=0 and m_psz=NULL. pcsz=NULL and psz=""
648 return RTStrICmp(pszThat, m_psz) == 0;
787 return RTStrToInt32(m_psz);
798 return RTStrToUInt32(m_psz);
809 return RTStrToInt64(m_psz);
820 return RTStrToUInt64(m_psz);
888 char *pszTmp = m_psz;
892 m_psz = a_rThat.m_psz;
896 a_rThat.m_psz = pszTmp;
914 if (m_psz)
916 RTStrFree(m_psz);
917 m_psz = NULL;
944 m_psz = RTStrAlloc(cchSrc + 1);
945 if (RT_LIKELY(m_psz))
949 memcpy(m_psz, pcszSrc, cchSrc);
950 m_psz[cchSrc] = '\0';
965 m_psz = NULL;
971 char *m_psz; /**< The string buffer. */
972 size_t m_cch; /**< strlen(m_psz) - i.e. no terminator included. */
973 size_t m_cbAllocated; /**< Size of buffer that m_psz points to; at least m_cbLength + 1. */