OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:exit_code
(Results
226 - 250
of
353
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/external/chromium_org/content/browser/
plugin_process_host.h
146
virtual void OnProcessCrashed(int
exit_code
) OVERRIDE;
ppapi_plugin_process_host.h
131
virtual void OnProcessCrashed(int
exit_code
) OVERRIDE;
/external/chromium_org/remoting/host/
daemon_process.h
71
virtual void OnPermanentError(int
exit_code
) OVERRIDE;
/external/chromium_org/testing/gtest/test/
gtest_throw_on_failure_test.py
75
return p.exited and p.
exit_code
== 0
gtest_xml_outfiles_test.py
104
self.assertEquals(0, p.
exit_code
)
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/
run_webkit_tests.py
74
if ((run_details.
exit_code
not in test_run_results.ERROR_CODES or
75
run_details.
exit_code
== test_run_results.EARLY_EXIT_STATUS) and
80
return run_details.
exit_code
378
_log.debug("Testing completed, Exit status: %d" % run_details.
exit_code
)
/external/chromium_org/v8/test/cctest/
testcfg.py
58
if output.
exit_code
!= 0:
/external/compiler-rt/lib/asan/
asan_interface_internal.h
92
int __asan_set_error_exit_code(int
exit_code
);
/external/gtest/test/
gtest_throw_on_failure_test.py
75
return p.exited and p.
exit_code
== 0
gtest_xml_outfiles_test.py
104
self.assertEquals(0, p.
exit_code
)
/external/protobuf/gtest/test/
gtest_throw_on_failure_test.py
75
return p.exited and p.
exit_code
== 0
gtest_xml_outfiles_test.py
104
self.assertEquals(0, p.
exit_code
)
/ndk/sources/third_party/googletest/googletest/test/
gtest_throw_on_failure_test.py
75
return p.exited and p.
exit_code
== 0
gtest_xml_outfiles_test.py
104
self.assertEquals(0, p.
exit_code
)
/external/chromium_org/testing/gtest/src/
gtest-death-test.cc
149
ExitedWithCode::ExitedWithCode(int
exit_code
) : exit_code_(
exit_code
) {
182
static std::string ExitSummary(int
exit_code
) {
187
m << "Exited with exit status " <<
exit_code
;
local
191
if (WIFEXITED(
exit_code
)) {
192
m << "Exited with exit status " << WEXITSTATUS(
exit_code
);
193
} else if (WIFSIGNALED(
exit_code
)) {
194
m << "Terminated by signal " << WTERMSIG(
exit_code
);
197
if (WCOREDUMP(
exit_code
)) {
[
all
...]
/external/chromium_org/third_party/mesa/src/src/gtest/src/
gtest-death-test.cc
111
ExitedWithCode::ExitedWithCode(int
exit_code
) : exit_code_(
exit_code
) {
144
static String ExitSummary(int
exit_code
) {
149
m << "Exited with exit status " <<
exit_code
;
local
153
if (WIFEXITED(
exit_code
)) {
154
m << "Exited with exit status " << WEXITSTATUS(
exit_code
);
155
} else if (WIFSIGNALED(
exit_code
)) {
156
m << "Terminated by signal " << WTERMSIG(
exit_code
);
159
if (WCOREDUMP(
exit_code
)) {
[
all
...]
/external/gtest/src/
gtest-death-test.cc
149
ExitedWithCode::ExitedWithCode(int
exit_code
) : exit_code_(
exit_code
) {
182
static std::string ExitSummary(int
exit_code
) {
187
m << "Exited with exit status " <<
exit_code
;
local
191
if (WIFEXITED(
exit_code
)) {
192
m << "Exited with exit status " << WEXITSTATUS(
exit_code
);
193
} else if (WIFSIGNALED(
exit_code
)) {
194
m << "Terminated by signal " << WTERMSIG(
exit_code
);
197
if (WCOREDUMP(
exit_code
)) {
[
all
...]
/external/llvm/utils/unittest/googletest/src/
gtest-death-test.cc
111
ExitedWithCode::ExitedWithCode(int
exit_code
) : exit_code_(
exit_code
) {
144
static String ExitSummary(int
exit_code
) {
149
m << "Exited with exit status " <<
exit_code
;
local
153
if (WIFEXITED(
exit_code
)) {
154
m << "Exited with exit status " << WEXITSTATUS(
exit_code
);
155
} else if (WIFSIGNALED(
exit_code
)) {
156
m << "Terminated by signal " << WTERMSIG(
exit_code
);
159
if (WCOREDUMP(
exit_code
)) {
[
all
...]
/external/mesa3d/src/gtest/src/
gtest-death-test.cc
111
ExitedWithCode::ExitedWithCode(int
exit_code
) : exit_code_(
exit_code
) {
144
static String ExitSummary(int
exit_code
) {
149
m << "Exited with exit status " <<
exit_code
;
local
153
if (WIFEXITED(
exit_code
)) {
154
m << "Exited with exit status " << WEXITSTATUS(
exit_code
);
155
} else if (WIFSIGNALED(
exit_code
)) {
156
m << "Terminated by signal " << WTERMSIG(
exit_code
);
159
if (WCOREDUMP(
exit_code
)) {
[
all
...]
/external/protobuf/gtest/src/
gtest-death-test.cc
111
ExitedWithCode::ExitedWithCode(int
exit_code
) : exit_code_(
exit_code
) {
140
static String ExitSummary(int
exit_code
) {
143
m << "Exited with exit status " <<
exit_code
;
local
145
if (WIFEXITED(
exit_code
)) {
146
m << "Exited with exit status " << WEXITSTATUS(
exit_code
);
147
} else if (WIFSIGNALED(
exit_code
)) {
148
m << "Terminated by signal " << WTERMSIG(
exit_code
);
151
if (WCOREDUMP(
exit_code
)) {
[
all
...]
/ndk/sources/third_party/googletest/googletest/src/
gtest-death-test.cc
149
ExitedWithCode::ExitedWithCode(int
exit_code
) : exit_code_(
exit_code
) {
182
static std::string ExitSummary(int
exit_code
) {
187
m << "Exited with exit status " <<
exit_code
;
local
191
if (WIFEXITED(
exit_code
)) {
192
m << "Exited with exit status " << WEXITSTATUS(
exit_code
);
193
} else if (WIFSIGNALED(
exit_code
)) {
194
m << "Terminated by signal " << WTERMSIG(
exit_code
);
197
if (WCOREDUMP(
exit_code
)) {
[
all
...]
/external/chromium_org/chrome/browser/local_discovery/
pwg_raster_converter.cc
112
virtual void OnProcessCrashed(int
exit_code
) OVERRIDE;
163
void PwgUtilityProcessHostClient::OnProcessCrashed(int
exit_code
) {
/external/chromium_org/chrome/browser/printing/
pdf_to_emf_converter.cc
106
virtual void OnProcessCrashed(int
exit_code
) OVERRIDE;
162
void PdfToEmfUtilityProcessHostClient::OnProcessCrashed(int
exit_code
) {
/external/chromium_org/content/browser/download/
mhtml_generation_manager.cc
39
int
exit_code
) OVERRIDE;
81
int
exit_code
) {
/external/chromium_org/content/browser/gpu/
gpu_data_manager_impl.cc
194
base::TerminationStatus
exit_code
) {
196
private_->ProcessCrashed(
exit_code
);
Completed in 1357 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>