OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:exception_string
(Results
1 - 8
of
8
) sorted by null
/external/chromium-trace/catapult/telemetry/telemetry/internal/util/
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
)
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):
48
_PrintFormattedTrace(traceback.extract_stack(frame), frame,
exception_string
)
51
def _PrintFormattedTrace(processed_tb, frame,
exception_string
=None):
71
if
exception_string
:
72
print >> sys.stderr,
exception_string
/external/chromium-trace/catapult/telemetry/third_party/webpagereplay/
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):
41
_PrintFormattedTrace(traceback.extract_stack(frame), frame,
exception_string
)
44
def _PrintFormattedTrace(processed_tb, frame,
exception_string
=None):
60
if
exception_string
:
61
print >> sys.stderr,
exception_string
/external/autotest/scheduler/
rdb_unittest.py
79
#
exception_string
and not the exception itself.
81
exception_string
= 'This is an exception'
82
response = [rdb_utils.RDBException(
exception_string
)]
86
self.assertTrue(response[0] ==
exception_string
)
/external/chromium-trace/catapult/telemetry/docs/pydoc/
telemetry.internal.util.exception_formatter.html
35
<dl><dt><a name="-PrintFormattedFrame"><strong>PrintFormattedFrame</strong></a>(frame,
exception_string
<font color="#909090">=None</font>)</dt></dl>
/art/test/004-JniTest/
jni_test.cc
705
jstring
exception_string
= (jstring) env_->CallObjectMethod(thrown, to_string);
local
707
const char* exception_string_utf8 = env_->GetStringUTFChars(
exception_string
, nullptr);
711
env_->ReleaseStringUTFChars(
exception_string
, exception_string_utf8);
/external/v8/samples/
shell.cc
387
const char*
exception_string
= ToCString(exception);
local
392
fprintf(stderr, "%s\n",
exception_string
);
399
fprintf(stderr, "%s:%i: %s\n", filename_string, linenum,
exception_string
);
/external/v8/src/
d8.cc
919
const char*
exception_string
= ToCString(exception);
local
924
printf("%s\n",
exception_string
);
931
printf("%s:%i: %s\n", filename_string, linenum,
exception_string
);
[
all
...]
Completed in 2042 milliseconds