| |
- __builtin__.object
-
- TracingCategoryFilter
class TracingCategoryFilter(__builtin__.object) |
|
A set of included and excluded categories that should be traced.
The TraceCategoryFilter allows fine tuning of what data is traced. Basic
choice of which tracers to use is done by TracingOptions.
Providing filter_string=None gives the default category filter, which leaves
what to trace up to the individual trace systems. |
|
Methods defined here:
- AddExcludedCategory(self, category_glob)
- Explicitly disables anything matching category_glob.
- AddIncludedCategory(self, category_glob)
- Explicitly enables anything matching category_glob.
- AddSyntheticDelay(self, delay)
- GetDictForChromeTracing(self)
- IsSubset(self, other)
- Determine if filter A (self) is a subset of filter B (other).
Returns True if A is a subset of B, False if A is not a subset of B,
and None if we can't tell for sure.
- __init__(self, filter_string=None)
Data descriptors defined here:
- __dict__
- dictionary for instance variables (if defined)
- __weakref__
- list of weak references to the object (if defined)
- disabled_by_default_categories
- excluded_categories
- filter_string
- included_categories
- stable_filter_string
- synthetic_delays
| |