Searched refs:RTStrSimplePatternMatch (Results 1 - 10 of 10) sorted by relevance

/vbox/src/VBox/Runtime/testcase/
H A DtstStrSimplePattern.cpp54 CHECK_EXPR(RTStrSimplePatternMatch("*", ""));
55 CHECK_EXPR(RTStrSimplePatternMatch("*", "asdfasdflkjasdlfkj"));
56 CHECK_EXPR(RTStrSimplePatternMatch("*?*?*?*?*", "asdfasdflkjasdlfkj"));
57 CHECK_EXPR(RTStrSimplePatternMatch("asdf??df", "asdfasdf"));
58 CHECK_EXPR(!RTStrSimplePatternMatch("asdf??dq", "asdfasdf"));
59 CHECK_EXPR(RTStrSimplePatternMatch("asdf*df", "asdfasdf"));
60 CHECK_EXPR(!RTStrSimplePatternMatch("asdf*dq", "asdfasdf"));
61 CHECK_EXPR(RTStrSimplePatternMatch("a*", "asdfasdf"));
62 CHECK_EXPR(RTStrSimplePatternMatch("a*f", "asdfasdf"));
63 CHECK_EXPR(!RTStrSimplePatternMatch("
[all...]
/vbox/src/VBox/Runtime/common/string/
H A Dsimplepattern.cpp37 RTDECL(bool) RTStrSimplePatternMatch(const char *pszPattern, const char *pszString) function
68 && RTStrSimplePatternMatch(pszPattern + 1, pszString))
90 RT_EXPORT_SYMBOL(RTStrSimplePatternMatch); variable
/vbox/src/VBox/Debugger/
H A DDBGCCommands.cpp785 if (RTStrSimplePatternMatch(pszPattern, aFixedCmds[j].paCmds[i].pszCmd))
789 if (RTStrSimplePatternMatch(pszPattern, aFixedFuncs[j].paFuncs[i].pszFuncNm))
802 if (RTStrSimplePatternMatch(pszPattern2, pExtCmd->paCmds[i].pszCmd))
807 if (RTStrSimplePatternMatch(pszPattern2, pExtFunc->paFuncs[i].pszFuncNm))
816 if (RTStrSimplePatternMatch(pszPattern, g_aDbgcOps[i].szName))
H A DDBGCEmulateCodeView.cpp3996 if (RTStrSimplePatternMatch(paArgs[i].u.pszString, pszName))
/vbox/src/VBox/Frontends/VBoxManage/
H A DVBoxManageGuestCtrl.cpp2067 && !RTStrSimplePatternMatch(pszFilter, DirEntry.szName))
2237 && !RTStrSimplePatternMatch(pszFilter, strFile.c_str()))
3605 if (RTStrSimplePatternMatch(strSessionName.c_str(), strNameUtf8.c_str()))
3781 if (RTStrSimplePatternMatch(strSessionName.c_str(), strNameUtf8.c_str()))
H A DVBoxManageMetrics.cpp110 if (strcmp(pszRaw, "CPU/MHz") && !RTStrSimplePatternMatch("Net/*/LinkSpeed", pszRaw))
/vbox/src/VBox/VMM/VMMR3/
H A DSTAM.cpp1526 if (RTStrSimplePatternMatch(pszPat, pCur->pszName))
2407 if (RTStrSimplePatternMatch(pszPat, pszName))
2534 if (RTStrSimplePatternMatch(pszPat, pCur->pszName))
2553 if (RTStrSimplePatternMatch(pszPat, pCur->pszName))
/vbox/src/VBox/ExtPacks/VBoxDTrace/onnv/lib/libdtrace/common/
H A Ddt_subr.c830 return (p == NULL || *p == '\0' || RTStrSimplePatternMatch(p, s)); /** @todo implement gmatch. */
/vbox/include/iprt/
H A Dstring.h2538 RTDECL(bool) RTStrSimplePatternMatch(const char *pszPattern, const char *pszString);
2543 * This is identical to RTStrSimplePatternMatch except that you can optionally
H A Dmangling.h1514 # define RTStrSimplePatternMatch RT_MANGLER(RTStrSimplePatternMatch) macro

Completed in 183 milliseconds