Searched defs:pszFile (Results 1 - 25 of 58) sorted by relevance

123

/vbox/src/VBox/Runtime/common/misc/
H A DRTAssertMsg1Weak.cpp37 RTDECL(void) RTAssertMsg1Weak(const char *pszExpr, unsigned uLine, const char *pszFile, const char *pszFunction) argument
39 RTAssertMsg1(pszExpr, uLine, pszFile, pszFunction);
H A Dassert.cpp105 RTDECL(void) RTAssertMsg1(const char *pszExpr, unsigned uLine, const char *pszFile, const char *pszFunction) argument
111 ASMAtomicUoWritePtr(&g_pszRTAssertFile, pszFile);
118 pszExpr, pszFile, uLine, pszFunction);
133 pszExpr, pszFile, uLine, pszFunction);
136 rtR0AssertNativeMsg1(pszExpr, uLine, pszFile, pszFunction);
144 pszExpr, pszFile, uLine, pszFunction);
154 pszExpr, pszFile, uLine, pszFunction);
170 pszExpr, pszFile, uLine, pszFunction);
184 VALID_PTR(pszFile) ? pszFile
[all...]
/vbox/src/libs/kStuff/iprt/
H A DkHlpAssert-iprt.cpp28 KHLP_DECL(void) kHlpAssertMsg1(const char *pszExpr, const char *pszFile, unsigned iLine, const char *pszFunction) argument
30 RTAssertMsg1Weak(pszExpr, iLine, pszFile, pszFunction);
/vbox/src/VBox/Runtime/r0drv/darwin/
H A Dassert-r0drv-darwin.cpp43 DECLHIDDEN(void) rtR0AssertNativeMsg1(const char *pszExpr, unsigned uLine, const char *pszFile, const char *pszFunction) argument
48 pszExpr, pszFile, uLine, pszFunction);
/vbox/src/VBox/Runtime/r0drv/freebsd/
H A Dassert-r0drv-freebsd.c44 DECLHIDDEN(void) rtR0AssertNativeMsg1(const char *pszExpr, unsigned uLine, const char *pszFile, const char *pszFunction) argument
49 pszExpr, pszFile, uLine, pszFunction);
/vbox/src/VBox/Runtime/r0drv/haiku/
H A Dassert-r0drv-haiku.c43 void rtR0AssertNativeMsg1(const char *pszExpr, unsigned uLine, const char *pszFile, const char *pszFunction) argument
48 pszExpr, pszFile, uLine, pszFunction);
/vbox/src/VBox/Runtime/r0drv/linux/
H A Dassert-r0drv-linux.c43 DECLHIDDEN(void) rtR0AssertNativeMsg1(const char *pszExpr, unsigned uLine, const char *pszFile, const char *pszFunction) argument
49 pszExpr, pszFile, uLine, pszFunction);
/vbox/src/VBox/Runtime/r0drv/nt/
H A Dassert-r0drv-nt.cpp40 DECLHIDDEN(void) rtR0AssertNativeMsg1(const char *pszExpr, unsigned uLine, const char *pszFile, const char *pszFunction) argument
45 pszExpr, pszFile, uLine, pszFunction);
/vbox/src/VBox/Runtime/r0drv/solaris/
H A Dassert-r0drv-solaris.c43 DECLHIDDEN(void) rtR0AssertNativeMsg1(const char *pszExpr, unsigned uLine, const char *pszFile, const char *pszFunction) argument
48 pszExpr, pszFile, uLine, pszFunction);
/vbox/src/VBox/Runtime/common/checksum/
H A DRTSha1Digest.cpp105 RTR3DECL(int) RTSha1DigestFromFile(const char *pszFile, char **ppszDigest, PFNRTPROGRESS pfnProgressCallback, void *pvUser) argument
108 AssertPtrReturn(pszFile, VERR_INVALID_POINTER);
116 int rc = RTFileOpen(&hFile, pszFile, RTFILE_O_OPEN | RTFILE_O_READ | RTFILE_O_DENY_WRITE);
H A DRTSha256Digest.cpp104 RTR3DECL(int) RTSha256DigestFromFile(const char *pszFile, char **ppszDigest, PFNRTPROGRESS pfnProgressCallback, void *pvUser) argument
107 AssertPtrReturn(pszFile, VERR_INVALID_POINTER);
119 int rc = RTFileOpen(&hFile, pszFile, RTFILE_O_OPEN | RTFILE_O_READ | RTFILE_O_DENY_WRITE);
/vbox/src/VBox/Additions/common/VBoxGuestLib/
H A DVBoxGuestR3LibRuntimeXF86.cpp50 RTDECL(void) RTAssertMsg1Weak(const char *pszExpr, unsigned uLine, const char *pszFile, const char *pszFunction) argument
54 ErrorF("%s:%u\n", pszFile, uLine);
/vbox/src/VBox/Runtime/r0drv/os2/
H A Dassert-r0drv-os2.cpp60 DECLHIDDEN(void) rtR0AssertNativeMsg1(const char *pszExpr, unsigned uLine, const char *pszFile, const char *pszFunction) argument
66 pszExpr, pszFile, uLine, pszFunction);
73 pszExpr, pszFile, uLine, pszFunction);
/vbox/src/VBox/Main/src-server/generic/
H A DAutostartDb-generic.cpp49 char *pszFile; local
60 rc = RTStrAPrintf(&pszFile, "%s/%s.%s",
64 rc = RTFileOpen(&hAutostartFile, pszFile, fOpen);
117 RTFileDelete(pszFile);
128 RTStrFree(pszFile);
/vbox/src/VBox/Runtime/testcase/
H A DtstRTHttp.cpp174 static void checkError(RTHTTP hHttp, int rc, const char *pszFile) argument
181 RTPrintf("Redirected to '%s' trying to fetch '%s'\n", pszRedirLocation, pszFile);
183 RTPrintf("Redirected trying to fetch '%s'\n", pszFile);
187 RTPrintf("Error %Rrc trying to fetch '%s'\n", rc, pszFile);
/vbox/include/iprt/win/
H A Dlazy-dbghelp.h38 static int rtLdrLazyLoadDbgHelp(const char *pszFile, PRTLDRMOD phMod) argument
75 return RTLdrLoadSystem(pszFile, true /*fNoUnload*/, phMod);
/vbox/src/bldprogs/
H A DVBoxCmp.cpp52 static FILE *openFile(const char *pszFile) argument
55 FILE *pFile = fopen(pszFile, "rb");
57 FILE *pFile = fopen(pszFile, "r");
60 printErr("Failed to open '%s': %s\n", pszFile, strerror(errno));
/vbox/src/VBox/HostDrivers/Support/win/
H A DSUPR3HardenedNoCrt-win.cpp69 RTDECL(void) RTAssertMsg1(const char *pszExpr, unsigned uLine, const char *pszFile, const char *pszFunction) argument
75 g_pszRTAssertFile = pszFile;
82 pszExpr, pszFile, uLine, pszFunction);
/vbox/src/VBox/GuestHost/OpenGL/include/
H A Dcr_dump.h106 const char* pszFile; member in struct:CR_HTML_DUMPER
114 DECLEXPORT(int) crDmpHtmlInit(struct CR_HTML_DUMPER * pDumper, const char *pszDir, const char *pszFile);
115 DECLEXPORT(int) crDmpHtmlInitV(struct CR_HTML_DUMPER * pDumper, const char *pszDir, const char *pszFile, va_list pArgList);
116 DECLEXPORT(int) crDmpHtmlInitF(struct CR_HTML_DUMPER * pDumper, const char *pszDir, const char *pszFile, ...);
/vbox/src/VBox/Runtime/r3/
H A Dalloc-ef.h184 const char *pszFile; member in struct:RTMEMBLOCK
/vbox/src/VBox/Runtime/tools/
H A DRTGzip.cpp283 * @param pszFile The input filename.
299 static RTEXITCODE gzipOpenOutput(const char *pszFile, PRTGZIPCMDOPTS pOpts, PRTVFSIOSTREAM phVfsIos) argument
302 if (!strcmp(pszFile, "-") || pOpts->fStdOut)
321 Assert(!RTVfsChainIsSpec(pszFile));
324 rc = RTStrCopy(pOpts->szOutput, sizeof(pOpts->szOutput), pszFile);
366 * @param pszFile The input filename.
371 static RTEXITCODE gzipOpenInput(const char *pszFile, PRTGZIPCMDOPTS pOpts, PRTVFSIOSTREAM phVfsIos) argument
375 pOpts->pszInput = pszFile;
376 if (!strcmp(pszFile, "-"))
394 rc = RTVfsChainOpenIoStream(pszFile, RTFILE_O_REA
[all...]
H A DRTNtDbgHelp.cpp169 * @param pszFile The file to load.
171 static RTEXITCODE loadModule(const char *pszFile) argument
178 uint64_t uModAddrGot = SymLoadModuleEx(g_hFake, NULL /*hFile*/, pszFile, NULL /*pszModuleName*/,
183 size_t cbFullName = strlen(pszFile) + 1;
185 memcpy(pMod->szFullName, pszFile, cbFullName);
/vbox/src/VBox/VMM/VMMR3/
H A DDBGF.cpp520 * @param pszFile Source file.
527 VMMR3DECL(int) DBGFR3EventSrc(PVM pVM, DBGFEVENTTYPE enmEvent, const char *pszFile, unsigned uLine, const char *pszFunction, const char *pszFormat, ...) argument
531 int rc = DBGFR3EventSrcV(pVM, enmEvent, pszFile, uLine, pszFunction, pszFormat, args);
543 * @param pszFile Source file.
550 VMMR3DECL(int) DBGFR3EventSrcV(PVM pVM, DBGFEVENTTYPE enmEvent, const char *pszFile, unsigned uLine, const char *pszFunction, const char *pszFormat, va_list args) argument
572 pVM->dbgf.s.DbgEvent.u.Src.pszFile = pszFile;
/vbox/src/VBox/Additions/os2/VBoxSF/
H A DVBoxSF.cpp132 FS32_DELETE(PCDFSI pcdfsi, PVBOXSFCD pcdfsd, PCSZ pszFile, USHORT iCurDirEnd) argument
/vbox/src/VBox/Additions/WINNT/VBoxTray/
H A DVBoxDnDDropTarget.cpp401 char *pszFile = NULL; /* UTF-8 version. */ local
413 int rc2 = RTUtf16ToUtf8(pwszFile, &pszFile);
422 pszFile = (char *)RTMemAlloc((cch + 1) * sizeof(char));
423 if (pszFile)
426 pszFile, cchFile + 1 /* Include terminator */);
437 pszFile, cchFile));
440 pszFile, cchFile);
445 if (pszFile)
446 RTMemFree(pszFile);

Completed in 156 milliseconds

123