Searched defs:pcbFile (Results 1 - 12 of 12) sorted by relevance

/vbox/src/VBox/Runtime/generic/
H A DRTFileReadAll-generic.cpp35 RTDECL(int) RTFileReadAll(const char *pszFilename, void **ppvFile, size_t *pcbFile) argument
37 return RTFileReadAllEx(pszFilename, 0, RTFOFF_MAX, RTFILE_RDALL_O_DENY_NONE, ppvFile, pcbFile);
H A DRTFileReadAllByHandle-generic.cpp35 RTDECL(int) RTFileReadAllByHandle(RTFILE File, void **ppvFile, size_t *pcbFile) argument
37 return RTFileReadAllByHandleEx(File, 0, RTFOFF_MAX, 0, ppvFile, pcbFile);
H A DRTFileQuerySize-generic.cpp40 RTDECL(int) RTFileQuerySize(const char *pszPath, uint64_t *pcbFile) argument
48 *pcbFile = ObjInfo.cbObject;
49 LogFlow(("RTFileQuerySize(%p:{%s}): returns %Rrc (%#RX64)\n", pszPath, pszPath, rc, *pcbFile));
H A DRTFileReadAllEx-generic.cpp38 RTDECL(int) RTFileReadAllEx(const char *pszFilename, RTFOFF off, RTFOFF cbMax, uint32_t fFlags, void **ppvFile, size_t *pcbFile) argument
46 rc = RTFileReadAllByHandleEx(File, off, cbMax, fFlags, ppvFile, pcbFile);
H A DRTFileReadAllByHandleEx-generic.cpp40 RTDECL(int) RTFileReadAllByHandleEx(RTFILE File, RTFOFF off, RTFOFF cbMax, uint32_t fFlags, void **ppvFile, size_t *pcbFile) argument
87 *pcbFile = cbAllocMem;
/vbox/src/VBox/Storage/
H A DVDIfVfs.cpp334 static DECLCALLBACK(int) vdIfVfsFile_QuerySize(void *pvThis, uint64_t *pcbFile) argument
339 rc = vdIfIoFileGetSize(pThis->pVDIfsIo, pThis->pStorage, pcbFile);
341 rc = vdIfIoIntFileGetSize(pThis->pVDIfsIoInt, pThis->pStorage, pcbFile);
H A DVDVfs.cpp472 static DECLCALLBACK(int) vdVfsFile_QuerySize(void *pvThis, uint64_t *pcbFile) argument
475 *pcbFile = VDGetSize(pThis->pDisk, VD_LAST_IMAGE);
H A DDMG.cpp495 static int dmgWrapFileGetSize(PDMGIMAGE pThis, uint64_t *pcbFile) argument
499 rc = vdIfIoIntFileGetSize(pThis->pIfIoXxx, pThis->pStorage, pcbFile);
501 rc = RTVfsFileGetSize(pThis->hDmgFileInXar, pcbFile);
/vbox/src/VBox/Runtime/common/dvm/
H A Ddvmvfs.cpp337 static DECLCALLBACK(int) rtDvmVfsFile_QuerySize(void *pvThis, uint64_t *pcbFile) argument
340 *pcbFile = RTDvmVolumeGetSize(pThis->hVol);
/vbox/src/VBox/Runtime/common/vfs/
H A Dvfsstdfile.cpp373 static DECLCALLBACK(int) rtVfsStdFile_QuerySize(void *pvThis, uint64_t *pcbFile) argument
376 return RTFileGetSize(pThis->hFile, pcbFile);
/vbox/src/VBox/Devices/EFI/
H A DDevEFI.cpp1868 efiFwVolFindFileByType(EFI_FFS_FILE_HEADER const *pFfsFile, uint8_t const *pbEnd, EFI_FV_FILETYPE FileType, uint32_t *pcbFile) argument
1875 *pcbFile = FFS_SIZE(pFfsFile);
/vbox/src/VBox/Runtime/common/zip/
H A Dxarvfs.cpp1114 static DECLCALLBACK(int) rtZipXarFssFile_QuerySize(void *pvThis, uint64_t *pcbFile) argument
1117 *pcbFile = pThis->Ios.DataAttr.cbDataArchived;

Completed in 82 milliseconds