Lines Matching refs:pszComment

6829  * @param   pszComment      Pointer to image comment. NULL is ok.
6839 unsigned uImageFlags, const char *pszComment,
6852 LogFlowFunc(("pDisk=%#p pszBackend=\"%s\" pszFilename=\"%s\" cbSize=%llu uImageFlags=%#x pszComment=\"%s\" PCHS=%u/%u/%u LCHS=%u/%u/%u Uuid=%RTuuid uOpenFlags=%#x pVDIfsImage=%#p pVDIfsOperation=%#p\n",
6853 pDisk, pszBackend, pszFilename, cbSize, uImageFlags, pszComment,
6985 uImageFlags, pszComment, pPCHSGeometry,
7112 * @param pszComment Pointer to image comment. NULL is ok.
7121 const char *pszComment, PCRTUUID pUuid,
7132 LogFlowFunc(("pDisk=%#p pszBackend=\"%s\" pszFilename=\"%s\" uImageFlags=%#x pszComment=\"%s\" Uuid=%RTuuid uOpenFlags=%#x pVDIfsImage=%#p pVDIfsOperation=%#p\n",
7133 pDisk, pszBackend, pszFilename, uImageFlags, pszComment, pUuid, uOpenFlags, pVDIfsImage, pVDIfsOperation));
7263 pszComment, &pDisk->PCHSGeometry,
7388 * @param pszComment Pointer to image comment. NULL is ok.
7396 unsigned uImageFlags, const char *pszComment,
7406 LogFlowFunc(("pDisk=%#p pszBackend=\"%s\" pszFilename=\"%s\" cbSize=%llu uImageFlags=%#x pszComment=\"%s\" Uuid=%RTuuid uOpenFlags=%#x pVDIfsImage=%#p pVDIfsOperation=%#p\n",
7407 pDisk, pszBackend, pszFilename, cbSize, uImageFlags, pszComment, pUuid, uOpenFlags, pVDIfsCache, pVDIfsOperation));
7512 pszComment, pUuid,
10226 * @returns VERR_BUFFER_OVERFLOW if pszComment buffer too small to hold comment text.
10229 * @param pszComment Where to store the comment string of image. NULL is ok.
10230 * @param cbComment The size of pszComment buffer. 0 is ok.
10233 char *pszComment, unsigned cbComment)
10239 LogFlowFunc(("pDisk=%#p nImage=%u pszComment=%#p cbComment=%u\n",
10240 pDisk, nImage, pszComment, cbComment));
10248 AssertMsgBreakStmt(VALID_PTR(pszComment),
10249 ("pszComment=%#p \"%s\"\n", pszComment, pszComment),
10262 rc = pImage->Backend->pfnGetComment(pImage->pBackendData, pszComment,
10272 LogFlowFunc(("returns %Rrc, pszComment=\"%s\"\n", rc, pszComment));
10283 * @param pszComment New comment string (UTF-8). NULL is allowed to reset the comment.
10286 const char *pszComment)
10292 LogFlowFunc(("pDisk=%#p nImage=%u pszComment=%#p \"%s\"\n",
10293 pDisk, nImage, pszComment, pszComment));
10301 AssertMsgBreakStmt(VALID_PTR(pszComment) || pszComment == NULL,
10302 ("pszComment=%#p \"%s\"\n", pszComment, pszComment),
10312 rc = pImage->Backend->pfnSetComment(pImage->pBackendData, pszComment);