Lines Matching refs:psz
73 RTDECL(const char *) RTStrCacheEnter(RTSTRCACHE hStrCache, const char *psz)
75 return RTStrCacheEnterN(hStrCache, psz, strlen(psz));
94 RTDECL(const char *) RTStrCacheEnterLower(RTSTRCACHE hStrCache, const char *psz)
96 return RTStrCacheEnterLowerN(hStrCache, psz, strlen(psz));
101 RTDECL(uint32_t) RTStrCacheRetain(const char *psz)
103 AssertPtr(psz);
104 return RTMemPoolRetain((void *)psz);
109 RTDECL(uint32_t) RTStrCacheRelease(RTSTRCACHE hStrCache, const char *psz)
111 if (!psz)
113 return RTMemPoolRelease((RTMEMPOOL)hStrCache, (void *)psz);
118 RTDECL(size_t) RTStrCacheLength(const char *psz)
120 if (!psz)
122 return strlen(psz);