Searched refs:exception_string (Results 1 – 6 of 6) sorted by relevance
/external/chromium-trace/catapult/telemetry/third_party/webpagereplay/ |
D | exception_formatter.py | 32 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/ |
D | exception_formatter.py | 38 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
|
D | global_hooks.py | 29 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/ |
D | rdb_unittest.py | 81 exception_string = 'This is an exception' 82 response = [rdb_utils.RDBException(exception_string)] 86 self.assertTrue(response[0] == exception_string)
|
/external/v8/samples/ |
D | shell.cc | 387 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/ |
D | d8.cc | 919 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()
|