Lines Matching defs:pszMode
236 * @param pszMode The open mode. See fopen() standard.
240 RTR3DECL(int) RTStrmOpen(const char *pszFilename, const char *pszMode, PRTSTREAM *ppStream)
245 if (!pszMode || !*pszMode)
247 AssertMsgFailed(("No pszMode!\n"));
257 switch (*pszMode)
262 switch (pszMode[1])
268 switch (pszMode[2])
304 AssertMsgFailed(("Invalid pszMode='%s', '<a|r|w>[+][b|t]'\n", pszMode));
322 pStream->pFile = fopen(pszFilename, pszMode);
339 * @param pszMode The open mode. See fopen() standard.
345 RTR3DECL(int) RTStrmOpenFV(const char *pszMode, PRTSTREAM *ppStream, const char *pszFilenameFmt, va_list args)
351 rc = RTStrmOpen(szFilename, pszMode, ppStream);
365 * @param pszMode The open mode. See fopen() standard.
371 RTR3DECL(int) RTStrmOpenF(const char *pszMode, PRTSTREAM *ppStream, const char *pszFilenameFmt, ...)
375 int rc = RTStrmOpenFV(pszMode, ppStream, pszFilenameFmt, args);