Home
last modified time | relevance | path

Searched refs:TraceProcessorException (Results 1 – 6 of 6) sorted by relevance

/external/perfetto/python/perfetto/trace_processor/
Dapi.py39 TraceProcessorException = PerfettoException variable
113 raise TraceProcessorException(
126 except TraceProcessorException as ex:
145 raise TraceProcessorException(response.error)
162 raise TraceProcessorException(response.error)
181 raise TraceProcessorException(response.error)
204 raise TraceProcessorException(
208 raise TraceProcessorException(
217 raise TraceProcessorException(
D__init__.py18 from perfetto.trace_processor.api import TraceProcessorException
/external/perfetto/python/tools/
Dbatch_trace_processor_shell.py27 from perfetto.trace_processor import TraceProcessorException, TraceProcessorConfig
42 except TraceProcessorException as ex:
50 except TraceProcessorException as ex:
58 except TraceProcessorException as ex:
68 except TraceProcessorException as ex:
/external/perfetto/python/perfetto/experimental/slice_breakdown/
Dbreakdown.py17 from perfetto.trace_processor.api import TraceProcessorException
190 raise TraceProcessorException("Didn't find startup in trace")
192 raise TraceProcessorException("Found multiple startups in trace")
/external/perfetto/python/perfetto/batch_trace_processor/
Dapi.py30 from perfetto.trace_processor.api import TraceProcessorException
284 raise TraceProcessorException("Query should only return a single row")
287 raise TraceProcessorException(
384 except TraceProcessorException as ex:
387 raise TraceProcessorException(f'{metadata} {ex}') from None
/external/perfetto/python/test/
Dapi_integrationtest.py31 from perfetto.trace_processor.api import TraceProcessorException
134 with self.assertRaises(TraceProcessorException):
144 TraceProcessorException,
267 with self.assertRaises(TraceProcessorException):
278 with self.assertRaises(TraceProcessorException):
292 TraceProcessorException, expected_regex='.*source.*generator.*'):