Searched defs:pszFile1 (Results 1 - 2 of 2) sorted by relevance

/vbox/src/bldprogs/
H A DVBoxCmp.cpp117 const char *pszFile1 = argv[1]; local
119 FILE *pFile1 = openFile(pszFile1);
/vbox/src/VBox/Runtime/r3/
H A Dfileio.cpp531 RTDECL(int) RTFileCompare(const char *pszFile1, const char *pszFile2) argument
533 return RTFileCompareEx(pszFile1, pszFile2, 0 /*fFlags*/, NULL, NULL);
543 RTDECL(int) RTFileCompareEx(const char *pszFile1, const char *pszFile2, uint32_t fFlags, PFNRTPROGRESS pfnProgress, void *pvUser) argument
548 AssertPtrReturn(pszFile1, VERR_INVALID_POINTER);
549 AssertReturn(*pszFile1, VERR_INVALID_PARAMETER);
559 int rc = RTFileOpen(&hFile1, pszFile1,

Completed in 43 milliseconds