Searched defs:pcszFile (Results 1 - 5 of 5) sorted by relevance

/vbox/src/bldprogs/
H A Dfilesplitter.cpp153 * @param pcszFile The path to the file.
157 static int readFile(const char *pcszFile, char **ppszFile, size_t *pcchFile) argument
163 if (stat(pcszFile, &FileStat))
164 return printErr("Failed to stat \"%s\": %s\n", pcszFile, strerror(errno));
166 pFile = fopen(pcszFile, "r");
168 return printErr("Failed to open \"%s\": %s\n", pcszFile, strerror(errno));
189 rc = printErr("Error reading \"%s\": %s\n", pcszFile, strerror(errno));
/vbox/src/VBox/Main/glue/
H A DAutoLock.cpp378 , pcszFile(pcszFile_),
395 const char *pcszFile; member in struct:util::AutoLockBase::Data
535 l.lockRead(m->pcszFile, m->uLine, m->pcszFunction);
567 l.lockWrite(m->pcszFile, m->uLine, m->pcszFunction);
/vbox/src/VBox/Additions/common/VBoxService/
H A DVBoxServiceToolBox.cpp978 static void toolboxRmReport(const char *pcszMessage, const char *pcszFile, argument
987 RTPrintf(pcszMessage, pcszFile, rc);
989 RTMsgError(pcszMessage, pcszFile, rc);
992 RTPrintf("fname=%s%crc=%d%c", pcszFile, 0, rc, 0);
1157 static void toolboxMkTempReport(const char *pcszMessage, const char *pcszFile, argument
1165 RTPrintf(pcszMessage, pcszFile, rc);
1167 RTMsgError(pcszMessage, pcszFile, rc);
1169 RTPrintf("name=%s%crc=%d%c", pcszFile, 0, rc, 0);
/vbox/src/VBox/Main/src-server/linux/
H A DUSBGetDevices.cpp843 const char *pcszFile = strrchr(pcszPath, '/'); local
844 if (!pcszFile)
846 unsigned bus = RTStrToUInt32(pcszFile + 1);
848 && pcszFile[1] == 'u' && pcszFile[2] == 's' && pcszFile[3] == 'b')
849 bus = RTStrToUInt32(pcszFile + 4);
871 const char *pcszFile = strrchr(pcszNode, '/'); local
872 if (!pcszFile)
874 if (strchr(pcszFile, '
[all...]
/vbox/src/VBox/Storage/testcase/
H A DtstVDIo.cpp1663 const char *pcszFile = NULL; local
1666 pcszFile = paScriptArgs[1].psz;
1674 rc = RTFileOpen(&hFile, pcszFile, RTFILE_O_DENY_NONE | RTFILE_O_OPEN | RTFILE_O_READ);
1740 const char *pcszFile = NULL; local
1743 pcszFile = paScriptArgs[0].psz;
1751 if (!RTStrCmp(pIt->pszName, pcszFile))
1760 RTPrintf("Dumping memory file %s to %s, this might take some time\n", pcszFile, pcszPathToDump);
1969 const char *pcszFile = paScriptArgs[0].psz; local
1976 if (!RTStrCmp(pIt->pszName, pcszFile))
1988 pcszFile,
2002 const char *pcszFile = paScriptArgs[0].psz; local
[all...]

Completed in 59 milliseconds