Searched defs:ppvFile (Results 1 - 4 of 4) 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 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
86 *ppvFile = pvFile;

Completed in 811 milliseconds