Searched refs:pszPat (Results 1 - 7 of 7) sorted by relevance

/vbox/src/VBox/Debugger/
H A DVBoxDbgBase.cpp72 const char *pszPat = !rPat.isEmpty() ? Utf8Array.constData() : NULL; local
76 return STAMR3Reset(pUVM, pszPat);
85 const char *pszPat = !rPat.isEmpty() ? Utf8Array.constData() : NULL; local
89 return STAMR3Enum(pUVM, pszPat, pfnEnum, pvUser);
H A DVBoxDbgStatsQt4.h186 * @param pszPat Initial selection pattern. NULL means everything. (See STAM for details.)
190 VBoxDbgStats(VBoxDbgGui *a_pDbgGui, const char *pszPat = NULL, unsigned uRefreshRate= 0, QWidget *pParent = NULL);
H A DVBoxDbgStatsQt4.cpp3033 VBoxDbgStats::VBoxDbgStats(VBoxDbgGui *a_pDbgGui, const char *pszPat/* = NULL*/, unsigned uRefreshRate/* = 0*/, QWidget *pParent/* = NULL*/)
3034 : VBoxDbgBaseWindow(a_pDbgGui, pParent), m_PatStr(pszPat), m_pPatCB(NULL), m_uRefreshRate(0), m_pTimer(NULL), m_pView(NULL)
/vbox/src/VBox/VMM/VMMR3/
H A DSTAM.cpp156 static char ** stamR3SplitPattern(const char *pszPat, unsigned *pcExpressions, char **ppszCopy);
157 static int stamR3EnumU(PUVM pUVM, const char *pszPat, bool fUpdateRing0, int (pfnCallback)(PSTAMDESC pDesc, void *pvArg), void *pvArg);
159 static void stamR3Ring0StatsUpdateU(PUVM pUVM, const char *pszPat);
1011 * @param pszPat The name patter to lookup.
1015 static PSTAMDESC stamR3LookupFindPatternDescRange(PSTAMLOOKUP pRoot, PRTLISTANCHOR pList, const char *pszPat,
1023 if ( pszPat[0] == '*' || pszPat[0] == '?'
1024 || pszPat[1] == '*' || pszPat[1] == '?')
1033 while ( *pszPat
[all...]
/vbox/include/VBox/vmm/
H A Dstam.h1202 VMMR3DECL(int) STAMR3Deregister(PUVM pUVM, const char *pszPat);
1207 VMMR3DECL(int) STAMR3Reset(PUVM pUVM, const char *pszPat);
1208 VMMR3DECL(int) STAMR3Snapshot(PUVM pUVM, const char *pszPat, char **ppszSnapshot, size_t *pcchSnapshot, bool fWithDesc);
1210 VMMR3DECL(int) STAMR3Dump(PUVM pUVM, const char *pszPat);
1211 VMMR3DECL(int) STAMR3DumpToReleaseLog(PUVM pUVM, const char *pszPat);
1212 VMMR3DECL(int) STAMR3Print(PUVM pUVM, const char *pszPat);
1232 VMMR3DECL(int) STAMR3Enum(PUVM pUVM, const char *pszPat, PFNSTAMR3ENUM pfnEnum, void *pvUser);
/vbox/src/VBox/Main/src-server/
H A DPerformance.cpp1462 * @param pszPat Pattern.
1466 bool Filter::patternMatch(const char *pszPat, const char *pszName, argument
1472 char chPat = *pszPat;
1482 while ((chPat = *++pszPat) == '*' || chPat == '?')
1488 if (!fSeenColon && !pszPat[1])
1498 || patternMatch(pszPat + 1, pszName, fSeenColon)))
1514 if (!fSeenColon && !pszPat[1])
1525 pszPat++;
/vbox/src/VBox/Main/include/
H A DPerformance.h887 static bool patternMatch(const char *pszPat, const char *pszName,

Completed in 1095 milliseconds