Searched defs:szFile (Results 1 - 9 of 9) sorted by relevance

/vbox/src/VBox/Main/testcase/
H A DtstMediumLock.cpp88 char szFile[50]; local
89 RTStrPrintf(szFile, sizeof(szFile), "%RTuuid.vdi", &uuid);
90 TEST_RT_SUCCESS(hTest, RTPathAppend(szPathTemp, sizeof(szPathTemp), szFile), "concatenate image name");
/vbox/src/VBox/HostDrivers/Support/testcase/
H A DtstInt.cpp62 char szFile[RTPATH_MAX]; local
65 rc = RTPathExecDir(szFile, sizeof(szFile) - sizeof("/VMMR0.r0"));
70 strcat(szFile, "/VMMR0.r0");
71 rc = RTPathAbs(szFile, szAbsFile, sizeof(szAbsFile));
/vbox/src/VBox/Additions/x11/vboxvideo/
H A Dgetmode.c560 char szFile[64] = "/dev/input/"; local
564 strncat(szFile, pDirent->d_name, sizeof(szFile) - sizeof("/dev/input/"));
567 fd = open(szFile, O_RDONLY | O_NONBLOCK);
/vbox/src/VBox/Additions/WINNT/Installer/InstallHelper/
H A DVBoxGuestInstallHelper.cpp228 TCHAR szFile[MAX_PATH + 1]; local
229 HRESULT hr = vboxPopString(szFile, sizeof(szFile) / sizeof(TCHAR));
251 hr = vboxChar2WCharAlloc(szFile, &pwszFile);
281 TCHAR szFile[MAX_PATH + 1]; local
282 HRESULT hr = vboxPopString(szFile, sizeof(szFile) / sizeof(TCHAR));
286 FILE *pFh = fopen(szFile, "rb");
383 TCHAR szFile[MAX_PATH + 1]; local
384 HRESULT hr = vboxPopString(szFile, sizeo
[all...]
/vbox/src/VBox/VMM/testcase/
H A DtstPDMAsyncCompletionStress.cpp464 char szFile[RTPATH_MAX]; local
466 RTStrPrintf(szFile, sizeof(szFile), "tstPDMAsyncCompletionStress-%d.tmp", iTestId);
469 rc = RTFileOpen(&FileTmp, szFile, RTFILE_O_READWRITE | RTFILE_O_CREATE | RTFILE_O_DENY_NONE);
474 rc = PDMR3AsyncCompletionEpCreateForFile(&pTestFile->hEndpoint, szFile, 0, pTestFile->pTemplate);
491 szFile, pTestFile->cbFileMax, pTestFile->cbFileSegment, pTestFile->cSegments, pTestFile->cTasksActiveMax);
498 RTFileDelete(szFile);
/vbox/src/VBox/Additions/common/VBoxService/
H A DVBoxServiceControlProcess.cpp1398 char szFile[RTPATH_MAX]; local
1400 int rc = RTPathTemp(szFile, sizeof(szFile));
1402 rc = RTPathAppend(szFile, sizeof(szFile), pszFileName);
1406 VBoxServiceVerbose(4, "Dumping %ld bytes to \"%s\"\n", cbBuf, szFile);
1409 rc = RTFileOpen(&fh, szFile, RTFILE_O_OPEN_CREATE | RTFILE_O_WRITE | RTFILE_O_DENY_WRITE);
H A DVBoxServiceControlSession.cpp205 char szFile[RTPATH_MAX]; local
215 szFile, sizeof(szFile),
227 szFile, szAccess, szDisposition, szSharing, uOffset, rc);
234 if (!strlen(szFile))
238 && !RTStrPrintf(pFile->szName, sizeof(pFile->szName), "%s", szFile))
290 szFile, rc2);
297 szFile, szAccess, szDisposition, uCreationMode, rc);
/vbox/src/bldprogs/
H A Dscm.cpp773 char szFile[RTPATH_MAX]; local
775 if (cchDir >= sizeof(szFile) - sizeof(SCM_SETTINGS_FILENAME))
793 rc = RTPathCopyComponents(szFile, sizeof(szFile), pszPath, i);
795 rc = RTPathAppend(szFile, sizeof(szFile), SCM_SETTINGS_FILENAME);
798 if (RTFileExists(szFile))
800 rc = scmSettingsLoadFile(pSettings, szFile);
843 char szFile[RTPATH_MAX]; local
844 int rc = RTPathJoin(szFile, sizeo
[all...]
/vbox/src/VBox/Runtime/common/dbg/
H A Ddbgmodcodeview.cpp1821 char szFile[RTPATH_MAX]; local
1823 szFile[0] = '\0';
1871 char *pszDst = szFile;
1872 rc = RTLatin1ToUtf8Ex(pszFile, Sym.NumberOfAuxSymbols * sizeof(IMAGE_SYMBOL), &pszDst, sizeof(szFile), NULL);
1876 Log3((" filename='%s'\n", szFile));
1898 if (iLine < cLines && szFile[0])
1899 rtDbgModCvAddCoffLineNumbers(pThis, szFile, iLineSect, &paLines[iLine], cLinesToAdd);

Completed in 87 milliseconds