Searched refs:ppvFile (Results 1 - 5 of 5) 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;
/vbox/include/iprt/
H A Dfile.h1025 * @param ppvFile Where to store the pointer to the memory on successful return.
1035 RTDECL(int) RTFileReadAll(const char *pszFilename, void **ppvFile, size_t *pcbFile);
1048 * @param ppvFile Where to store the pointer to the memory on successful return.
1053 RTDECL(int) RTFileReadAllEx(const char *pszFilename, RTFOFF off, RTFOFF cbMax, uint32_t fFlags, void **ppvFile, size_t *pcbFile);
1062 * @param ppvFile Where to store the pointer to the memory on successful return.
1067 RTDECL(int) RTFileReadAllByHandle(RTFILE File, void **ppvFile, size_t *pcbFile);
1080 * @param ppvFile Where to store the pointer to the memory on successful return.
1085 RTDECL(int) RTFileReadAllByHandleEx(RTFILE File, RTFOFF off, RTFOFF cbMax, uint32_t fFlags, void **ppvFile, size_t *pcbFile);

Completed in 61 milliseconds