Searched refs:pszFilter (Results 1 - 9 of 9) sorted by relevance

/vbox/src/VBox/Runtime/testcase/
H A DtstDir-3.cpp34 static int tstDirOpenFiltered(const char *pszFilter, unsigned *pcFilesMatch, int *pRc) argument
39 int rc = RTDirOpenFiltered(&pDir, pszFilter, RTDIRFILTER_WINNT, 0);
53 RTPrintf("tstDir-3: Enumeration '%s' failed! rc=%Rrc\n", pszFilter, rc);
61 RTPrintf("tstDir-3: Failed to close dir '%s'! rc=%Rrc\n", pszFilter, rc);
67 RTPrintf("tstDir-3: Failed to open '%s', rc=%Rrc\n", pszFilter, rc);
/vbox/src/VBox/Runtime/r3/
H A Ddir.cpp467 if ( (pDir->cchFilter == 1 && pDir->pszFilter[0] == '*')
468 || (pDir->cchFilter == 3 && !memcmp(pDir->pszFilter, "<\".>", 3))
510 * @param pszFilter Pointer to where the filter start in the path. NULL if no filter.
513 static int rtDirOpenCommon(PRTDIR *ppDir, const char *pszPath, const char *pszFilter, RTDIRFILTER enmFilter) argument
526 if (!pszFilter)
533 cbFilter = strlen(pszFilter) + 1;
534 cucFilter0 = RTStrUniLen(pszFilter) + 1;
536 if (pszFilter != pszPath)
542 pszTmp[pszFilter - pszPath] = '\0';
582 rc = RTStrToUniEx(pszFilter, RTSTR_MA
674 const char *pszFilter; local
[all...]
/vbox/src/VBox/Runtime/include/internal/
H A Ddir.h66 const char *pszFilter; member in struct:RTDIR
/vbox/src/VBox/Runtime/tools/
H A DRTDbgSymCache.cpp76 const char *pszFilter; member in struct:RTDBGSYMCACHEADDCFG
951 if (pCfg->pszFilter)
953 rc = RTStrCopy(&pszPath[cchPath], RTPATH_MAX - cchPath, pCfg->pszFilter);
957 return RTMsgErrorRc(rc, "Filename too long (%Rrc): '%s" RTPATH_SLASH_STR "%s'", rc, pszPath, pCfg->pszFilter);
964 return RTMsgErrorRc(rc, "RTDirOpen%s failed on '%s': %Rrc", pCfg->pszFilter ? "Filtered" : "", pszPath, rc);
1081 if (pCfg->pszFilter)
1082 szPath[cchPath - strlen(pCfg->pszFilter)] = '\0';
1114 Cfg.pszFilter = NULL;
1125 Cfg.pszFilter = RTPathFilename(pszPath);
/vbox/src/VBox/Frontends/VBoxManage/
H A DVBoxManageGuestCtrl.cpp153 SOURCEFILEENTRY(const char *pszSource, const char *pszFilter) argument
155 mFilter(pszFilter) {}
1958 * @param pszFilter DOS-style wildcard filter (?, *). Optional.
1965 const char *pszSource, const char *pszFilter,
2045 pszSource, pszFilter,
2066 if ( pszFilter
2067 && !RTStrSimplePatternMatch(pszFilter, DirEntry.szName))
2127 * @param pszFilter DOS-style wildcard filter (?, *). Optional.
2134 const char *pszSource, const char *pszFilter,
2163 HRESULT rc = pContext->pCmdCtx->pGuestSession->DirectoryOpen(Bstr(szCurDir).raw(), Bstr(pszFilter)
1964 ctrlCopyDirToGuest(PCOPYCONTEXT pContext, const char *pszSource, const char *pszFilter, const char *pszDest, uint32_t fFlags, const char *pszSubDir ) argument
2133 ctrlCopyDirToHost(PCOPYCONTEXT pContext, const char *pszSource, const char *pszFilter, const char *pszDest, uint32_t fFlags, const char *pszSubDir ) argument
2337 ctrlCopyDirToDest(PCOPYCONTEXT pContext, const char *pszSource, const char *pszFilter, const char *pszDest, uint32_t fFlags) argument
2564 const char *pszFilter = vecSources[s].GetFilter(); local
[all...]
/vbox/include/VBox/
H A Dvd.h448 const char *pszFilter; member in struct:VDFILTERINFO
572 * @param pszFilter The filter name (case insensitive).
575 VBOXDDU_DECL(int) VDFilterInfoOne(const char *pszFilter, PVDFILTERINFO pEntry);
657 * @param pszFilter Name of the filter backend to use (case insensitive).
662 VBOXDDU_DECL(int) VDFilterAdd(PVBOXHDD pDisk, const char *pszFilter, uint32_t fFlags,
/vbox/src/VBox/Runtime/r3/win/
H A Ddirenum-win.cpp66 pszExpr = pDir->pszFilter;
/vbox/src/VBox/Storage/
H A DVD.cpp875 static int vdFindFilterBackend(const char *pszFilter, PCVDFILTERBACKEND *ppBackend) argument
882 if (!RTStrICmp(pszFilter, g_apFilterBackends[i]->pszBackendName))
5909 pEntries[i].pszFilter = g_apFilterBackends[i]->pszBackendName;
5922 * @param pszFilter The filter name (case insensitive).
5925 VBOXDDU_DECL(int) VDFilterInfoOne(const char *pszFilter, PVDFILTERINFO pEntry) argument
5927 LogFlowFunc(("pszFilter=%#p pEntry=%#p\n", pszFilter, pEntry));
5929 AssertMsgReturn(VALID_PTR(pszFilter),
5930 ("pszFilter=%#p\n", pszFilter), local
6726 VDFilterAdd(PVBOXHDD pDisk, const char *pszFilter, uint32_t fFlags, PVDINTERFACE pVDIfsFilter) argument
[all...]
/vbox/src/VBox/Runtime/r3/nt/
H A Ddirenum-r3-nt.cpp93 rc = RTStrToUtf16(pDir->pszFilter, &pwszTmp);

Completed in 411 milliseconds