Searched defs:pTar (Results 1 - 2 of 2) sorted by relevance

/vbox/src/VBox/Runtime/common/zip/
H A Dtar.cpp132 PRTTARINTERNAL pTar; member in struct:RTTARFILEINTERNAL
290 pNewFile->pTar = NULL;
322 pFileInt->pTar = pInt;
424 rc = RTFileSeek(pFileInt->pTar->hTarFile, 0, RTFILE_SEEK_END, &pFileInt->offStart);
429 rc = RTFileWrite(pFileInt->pTar->hTarFile, &record, sizeof(RTTARRECORD), NULL);
629 pFileInt->pTar->fFileOpenForWrite = false;
648 rc = RTFileWriteAt(pFileInt->pTar->hTarFile,
667 rc = RTFileWriteAt(pFileInt->pTar->hTarFile, pFileInt->offStart, &record, sizeof(RTTARRECORD), NULL);
721 int rc = RTFileWriteAt(pFileInt->pTar->hTarFile, pFileInt->offStart + 512 + off, pvBuf, cbToWrite, &cbTmpWritten);
H A Dtarvfs.cpp314 * @param pTar The TAR header.
317 static int rtZipTarHdrValidate(PCRTZIPTARHDR pTar, PRTZIPTARTYPE penmType) argument
324 if (rtZipTarCalcChkSum(pTar, &i32ChkSum, &i32ChkSumSignedAlt))
331 int rc = rtZipTarHdrFieldToNum(pTar->Common.chksum, sizeof(pTar->Common.chksum), true /*fOctalOnly*/, &i64HdrChkSum);
342 if ( pTar->Common.magic[0] == 'u'
343 && pTar->Common.magic[1] == 's'
344 && pTar->Common.magic[2] == 't'
345 && pTar->Common.magic[3] == 'a'
346 && pTar
[all...]

Completed in 46 milliseconds