Searched defs:pszFullName (Results 1 - 3 of 3) sorted by relevance

/vbox/src/VBox/Runtime/testcase/
H A DtstRTLdrVerifyPeImage.cpp66 const char *pszFullName = argv[i]; local
67 const char *pszFilename = RTPathFilename(pszFullName);
71 int rc = RTLdrOpen(pszFullName, RTLDR_O_FOR_VALIDATION, RTLDRARCH_WHATEVER, &hLdrMod);
100 RTTestFailed(hTest, "Error opening '%s': %Rrc\n", pszFullName, rc);
/vbox/src/VBox/VMM/VMMR3/
H A DCPUMR3Db.cpp41 const char *pszFullName; member in struct:CPUMDBENTRY
/vbox/src/VBox/Runtime/common/string/
H A Duniread.cpp496 char *pszFullName = (char *)malloc(cchBasePath + 1 + cchFilename + 1); local
497 if (!pszFullName)
503 memcpy(pszFullName, pszBasePath, cchBasePath);
504 pszFullName[cchBasePath] = '/';
505 memcpy(&pszFullName[cchBasePath + 1], pszFilename, cchFilename + 1);
507 pFile = fopen(pszFullName, "r");
509 fprintf(stderr, "uniread: failed to open '%s' for reading\n", pszFullName);
510 free(pszFullName);

Completed in 49 milliseconds