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

/vbox/src/VBox/Additions/common/VBoxGuestLib/
H A DVBoxGuestR3LibDaemonize.cpp270 * @param phFile Where to store the file descriptor of the open (and locked
274 VBGLR3DECL(int) VbglR3PidFile(const char *pszPath, PRTFILE phFile) argument
277 AssertPtrReturn(phFile, VERR_INVALID_PARAMETER);
278 *phFile = NIL_RTFILE;
300 *phFile = hPidFile;
/vbox/src/VBox/Installer/win/StubBld/
H A DVBoxStubBld.cpp30 HANDLE* phFile,
34 *phFile = ::CreateFile(pszFilePath, GENERIC_READ, FILE_SHARE_READ, NULL, OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL, NULL);
35 if (INVALID_HANDLE_VALUE == *phFile)
41 *pdwFileSize = ::GetFileSize(*phFile, NULL);
29 GetFile(const char* pszFilePath, HANDLE* phFile, DWORD* pdwFileSize) argument
/vbox/src/VBox/Runtime/r3/posix/
H A Dfileio-posix.cpp344 RTR3DECL(int) RTFileOpenBitBucket(PRTFILE phFile, uint64_t fAccess) argument
350 return RTFileOpen(phFile, "/dev/null", fAccess | RTFILE_O_DENY_NONE | RTFILE_O_OPEN);
/vbox/src/VBox/Devices/Audio/
H A DDrvHostOSSAudio.cpp207 static int drvHostOSSAudioClose(int *phFile) argument
209 if (!phFile || !*phFile)
213 if (close(*phFile))
221 *phFile = -1;
230 int *phFile)
234 AssertPtrReturn(phFile, VERR_INVALID_POINTER);
322 *phFile = hFile;
228 drvHostOSSAudioOpen(bool fIn, POSSAUDIOSTREAMCFG pReq, POSSAUDIOSTREAMCFG pObt, int *phFile) argument
/vbox/src/VBox/HostDrivers/Support/
H A DSUPR3HardenedVerify.cpp497 * @param phFile The file handle, set to -1 if we failed to open
501 static int supR3HardenedVerifyFileOpen(PCSUPINSTFILE pFile, bool fFatal, intptr_t *phFile) argument
503 *phFile = -1;
522 *phFile = (intptr_t)hFile;
H A DSUPLib.cpp1514 SUPR3DECL(int) SUPR3HardenedVerifyFile(const char *pszFilename, const char *pszMsg, PRTFILE phFile) argument
1521 AssertReturn(!phFile, VERR_NOT_IMPLEMENTED); /** @todo Implement this. The deal is that we make sure the
/vbox/src/VBox/Runtime/r0drv/darwin/
H A Ddbgkrnlinfo-r0drv-darwin.cpp213 RTDECL(int) RTFileOpen(PRTFILE phFile, const char *pszFilename, uint64_t fOpen) argument
266 *phFile = pThis;
/vbox/src/VBox/Runtime/r3/win/
H A Dfileio-win.cpp334 RTR3DECL(int) RTFileOpenBitBucket(PRTFILE phFile, uint64_t fAccess) argument
340 return RTFileOpen(phFile, "NUL", fAccess | RTFILE_O_DENY_NONE | RTFILE_O_OPEN);
/vbox/src/VBox/Additions/WINNT/Installer/
H A DVBoxDrvInst.cpp230 FILE *phFile = NULL; local
233 phFile = _wfopen(pszLogFile, _T("a"));
234 if (!phFile)
236 g_pfnDIFXAPISetLogCallback(LogCallback, phFile);
381 if (phFile)
382 fclose(phFile);
/vbox/src/VBox/Runtime/common/zip/
H A Dtar.cpp335 RTR3DECL(int) RTTarFileOpen(RTTAR hTar, PRTTARFILE phFile, const char *pszFilename, uint32_t fOpen) argument
400 rc = rtTarFileCreateHandleForReadOnly(pszName, RTVfsObjToIoStream(hVfsObj), fOpen, phFile);
433 *phFile = (RTTARFILE)pFileInt;
/vbox/src/VBox/Debugger/
H A DDBGCEmulateCodeView.cpp1246 FILE *phFile = fopen(Line.szFilename, "r"); local
1247 if (phFile)
1258 if (!fgets(szLine, sizeof(szLine), phFile))
1275 (void)fgets(szLine, sizeof(szLine), phFile);
1281 fclose(phFile);
/vbox/src/recompiler/
H A DVBoxRecompiler.c4084 void disas(FILE *phFile, void *pvCode, unsigned long cb) argument
4124 void target_disas(FILE *phFile, target_ulong uCode, target_ulong cb, int fFlags) argument

Completed in 79 milliseconds