Lines Matching defs:pszFile
283 * @param pszFile The input filename.
299 static RTEXITCODE gzipOpenOutput(const char *pszFile, PRTGZIPCMDOPTS pOpts, PRTVFSIOSTREAM phVfsIos)
302 if (!strcmp(pszFile, "-") || pOpts->fStdOut)
321 Assert(!RTVfsChainIsSpec(pszFile));
324 rc = RTStrCopy(pOpts->szOutput, sizeof(pOpts->szOutput), pszFile);
366 * @param pszFile The input filename.
371 static RTEXITCODE gzipOpenInput(const char *pszFile, PRTGZIPCMDOPTS pOpts, PRTVFSIOSTREAM phVfsIos)
375 pOpts->pszInput = pszFile;
376 if (!strcmp(pszFile, "-"))
394 rc = RTVfsChainOpenIoStream(pszFile, RTFILE_O_READ | RTFILE_O_OPEN | RTFILE_O_DENY_WRITE, phVfsIos, &pszError);
402 rc, pszFile, pszError - pszFile, "");
405 rc, pszFile);