Lines Matching defs:pszPatterns
99 bool Matches(const char *pszPatterns) const
101 return ( pszPatterns[0] == '\0' /* match all */
102 || RTStrSimplePatternMultiMatch(pszPatterns, RTSTR_MAX,
203 * @param pszPatterns the patterns to match the property name against
209 int getOldNotification(const char *pszPatterns, uint64_t u64Timestamp,
212 AssertPtrReturn(pszPatterns, VERR_INVALID_POINTER);
216 int rc = getOldNotificationInternal(pszPatterns, u64Timestamp, pProp);
221 * - Matches the pszPatterns
235 Assert(!it->Matches(pszPatterns));
239 Assert(pProp->Matches(pszPatterns));
951 int Service::getOldNotificationInternal(const char *pszPatterns,
970 if (base->Matches(pszPatterns))
1034 char *pszPatterns = NULL; /* shut up gcc */
1045 || RT_FAILURE(paParms[0].getString(&pszPatterns, &cchPatterns)) /* patterns */
1052 LogFlow(("pszPatterns=%s, u64Timestamp=%llu\n", pszPatterns, u64Timestamp));
1060 rc = getOldNotification(pszPatterns, u64Timestamp, &prop);
1079 && RTStrCmp(pszPatterns, pszPatternsExisting) == 0)
1150 const char *pszPatterns;
1152 it->mParms[0].getString(&pszPatterns, &cchPatterns);
1153 if (prop.Matches(pszPatterns))