Searched refs:pStrSpace (Results 1 - 2 of 2) sorted by relevance

/vbox/src/VBox/Runtime/common/string/
H A Dstrspace.cpp82 * @param pStrSpace The space to insert it into.
85 RTDECL(bool) RTStrSpaceInsert(PRTSTRSPACE pStrSpace, PRTSTRSPACECORE pStr) argument
88 PRTSTRSPACECORE pMatch = KAVL_FN(Get)(pStrSpace, pStr->Key);
90 return KAVL_FN(Insert)(pStrSpace, pStr);
109 * @param pStrSpace The space to insert it into.
112 RTDECL(PRTSTRSPACECORE) RTStrSpaceRemove(PRTSTRSPACE pStrSpace, const char *pszString) argument
116 PRTSTRSPACECORE pCur = KAVL_FN(Get)(pStrSpace, Key);
136 pCur = KAVL_FN(Remove)(pStrSpace, Key);
141 bool fRc = KAVL_FN(Insert)(pStrSpace, pInsert);
158 * @param pStrSpace Th
161 RTStrSpaceGet(PRTSTRSPACE pStrSpace, const char *pszString) argument
190 RTStrSpaceGetN(PRTSTRSPACE pStrSpace, const char *pszString, size_t cchMax) argument
219 RTStrSpaceEnumerate(PRTSTRSPACE pStrSpace, PFNRTSTRSPACECALLBACK pfnCallback, void *pvUser) argument
237 RTStrSpaceDestroy(PRTSTRSPACE pStrSpace, PFNRTSTRSPACECALLBACK pfnCallback, void *pvUser) argument
[all...]
/vbox/include/iprt/
H A Dstring.h3085 * @param pStrSpace The space to insert it into.
3088 RTDECL(bool) RTStrSpaceInsert(PRTSTRSPACE pStrSpace, PRTSTRSPACECORE pStr);
3095 * @param pStrSpace The space to remove it from.
3098 RTDECL(PRTSTRSPACECORE) RTStrSpaceRemove(PRTSTRSPACE pStrSpace, const char *pszString);
3105 * @param pStrSpace The space to get it from.
3108 RTDECL(PRTSTRSPACECORE) RTStrSpaceGet(PRTSTRSPACE pStrSpace, const char *pszString);
3115 * @param pStrSpace The space to get it from.
3121 RTDECL(PRTSTRSPACECORE) RTStrSpaceGetN(PRTSTRSPACE pStrSpace, const char *pszString, size_t cchMax);
3143 * @param pStrSpace The space to destroy.
3147 RTDECL(int) RTStrSpaceDestroy(PRTSTRSPACE pStrSpace, PFNRTSTRSPACECALLBAC
[all...]

Completed in 50 milliseconds