Home
last modified time | relevance | path

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

/external/chromium-trace/catapult/telemetry/third_party/webpagereplay/
Dexception_formatter.py32 exception_string = '\n'.join(l.strip() for l in exception_list)
38 _PrintFormattedTrace(processed_tb, frame, exception_string)
40 def PrintFormattedFrame(frame, exception_string=None): argument
41 _PrintFormattedTrace(traceback.extract_stack(frame), frame, exception_string)
44 def _PrintFormattedTrace(processed_tb, frame, exception_string=None): argument
60 if exception_string:
61 print >> sys.stderr, exception_string
/external/chromium-trace/catapult/telemetry/telemetry/internal/util/
Dexception_formatter.py38 exception_string = '\n'.join(l.strip() for l in exception_list)
44 _PrintFormattedTrace(processed_tb, frame, exception_string)
47 def PrintFormattedFrame(frame, exception_string=None): argument
48 _PrintFormattedTrace(traceback.extract_stack(frame), frame, exception_string)
51 def _PrintFormattedTrace(processed_tb, frame, exception_string=None): argument
71 if exception_string:
72 print >> sys.stderr, exception_string
Dglobal_hooks.py29 exception_string = 'SIGUSR1 received, printed stack trace'
30 exception_formatter.PrintFormattedFrame(stack_frame, exception_string)
37 exception_string = 'Received signal %s, exiting' % sig
38 exception_formatter.PrintFormattedFrame(stack_frame, exception_string)
/external/autotest/scheduler/
Drdb_unittest.py81 exception_string = 'This is an exception'
82 response = [rdb_utils.RDBException(exception_string)]
86 self.assertTrue(response[0] == exception_string)
/external/v8/samples/
Dshell.cc387 const char* exception_string = ToCString(exception); in ReportException() local
392 fprintf(stderr, "%s\n", exception_string); in ReportException()
399 fprintf(stderr, "%s:%i: %s\n", filename_string, linenum, exception_string); in ReportException()
/external/v8/src/
Dd8.cc919 const char* exception_string = ToCString(exception); in ReportException() local
924 printf("%s\n", exception_string); in ReportException()
931 printf("%s:%i: %s\n", filename_string, linenum, exception_string); in ReportException()