Lines Matching refs:pszComment

533 static int vmdkSetImageComment(PVMDKIMAGE pImage, const char *pszComment);
3939 unsigned uImageFlags, const char *pszComment,
3965 const PVBOXHDDRAW pRaw = (const PVBOXHDDRAW)pszComment;
3968 pszComment = NULL;
4071 rc = vmdkSetImageComment(pImage, pszComment);
4117 static int vmdkSetImageComment(PVMDKIMAGE pImage, const char *pszComment)
4120 if (pszComment)
4122 pszCommentEncoded = vmdkEncodeString(pszComment);
4130 if (pszComment)
5316 unsigned uImageFlags, const char *pszComment,
5324 LogFlowFunc(("pszFilename=\"%s\" cbSize=%llu uImageFlags=%#x pszComment=\"%s\" pPCHSGeometry=%#p pLCHSGeometry=%#p Uuid=%RTuuid uOpenFlags=%#x uPercentStart=%u uPercentSpan=%u pVDIfsDisk=%#p pVDIfsImage=%#p pVDIfsOperation=%#p enmType=%u ppBackendData=%#p\n",
5325 pszFilename, cbSize, uImageFlags, pszComment, pPCHSGeometry, pLCHSGeometry, pUuid, uOpenFlags, uPercentStart, uPercentSpan, pVDIfsDisk, pVDIfsImage, pVDIfsOperation, enmType, ppBackendData));
5413 rc = vmdkCreateImage(pImage, cbSize, uImageFlags, pszComment,
6258 static int vmdkGetComment(void *pBackendData, char *pszComment,
6261 LogFlowFunc(("pBackendData=%#p pszComment=%#p cbComment=%zu\n", pBackendData, pszComment, cbComment));
6277 if (pszComment && pszCommentEncoded)
6278 rc = vmdkDecodeString(pszCommentEncoded, pszComment, cbComment);
6281 if (pszComment)
6282 *pszComment = '\0';
6292 LogFlowFunc(("returns %Rrc comment='%s'\n", rc, pszComment));
6297 static int vmdkSetComment(void *pBackendData, const char *pszComment)
6299 LogFlowFunc(("pBackendData=%#p pszComment=\"%s\"\n", pBackendData, pszComment));
6317 rc = vmdkSetImageComment(pImage, pszComment);