OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:known_dead
(Results
1 - 13
of
13
) sorted by null
/external/chromium_org/content/browser/
child_process_launcher.h
59
// |
known_dead
| can be true if we already know the process is dead as it can
61
// On Linux, the use of |
known_dead
| is subtle and can be crucial if an
62
// accurate status is important. With |
known_dead
| set to false, a dead
63
// process could be seen as running. With |
known_dead
| set to true, the
69
base::TerminationStatus GetChildTerminationStatus(bool
known_dead
,
browser_child_process_host_impl.h
56
bool
known_dead
, int* exit_code) OVERRIDE;
child_process_launcher.cc
459
bool
known_dead
,
471
GetTerminationStatus(handle,
known_dead
, &context_->exit_code_);
472
} else if (
known_dead
) {
477
if (
known_dead
) {
browser_child_process_host_impl.cc
233
bool
known_dead
, int* exit_code) {
237
return child_process_->GetChildTerminationStatus(
known_dead
,
275
true /*
known_dead
*/, &exit_code);
/external/chromium_org/content/public/browser/
browser_child_process_host.h
64
// |
known_dead
| indicates that the child is already dead. On Linux, this
68
bool
known_dead
, int* exit_code) = 0;
/external/chromium_org/content/public/common/
zygote_fork_delegate_linux.h
73
// |
known_dead
| indicates that the process is already dead and that a
76
virtual bool GetTerminationStatus(pid_t pid, bool
known_dead
,
/external/chromium_org/components/nacl/zygote/
nacl_fork_delegate_linux.h
34
virtual bool GetTerminationStatus(pid_t pid, bool
known_dead
,
nacl_fork_delegate_linux.cc
309
bool NaClForkDelegate::GetTerminationStatus(pid_t pid, bool
known_dead
,
319
write_pickle.WriteBool(
known_dead
);
/external/chromium_org/content/browser/zygote_host/
zygote_host_impl_linux.h
46
// |
known_dead
| should be set to true when we already know that the process
47
// is dead. When |
known_dead
| is false, processes could be seen as
48
// still running, even when they're not. When |
known_dead
| is true, the
53
bool
known_dead
,
zygote_host_impl_linux.cc
475
bool
known_dead
,
480
pickle.WriteBool(
known_dead
);
/external/chromium_org/content/zygote/
zygote_linux.h
67
bool GetTerminationStatus(base::ProcessHandle real_pid, bool
known_dead
,
zygote_linux.cc
199
// with
known_dead
set to true.
205
GetTerminationStatus(child, true /*
known_dead
*/, &status, &exit_code);
212
bool
known_dead
,
228
if (!helper_->GetTerminationStatus(child,
known_dead
, status, exit_code)) {
233
if (
known_dead
) {
252
bool
known_dead
;
local
255
if (!pickle.ReadBool(&iter, &
known_dead
) ||
266
GetTerminationStatus(child_requested,
known_dead
, &status, &exit_code);
/external/chromium_org/components/nacl/loader/
nacl_helper_linux.cc
158
bool
known_dead
;
local
159
if (!input_iter->ReadBool(&
known_dead
)) {
160
LOG(ERROR) << "Could not read
known_dead
status";
163
// TODO(jln): With NaCl,
known_dead
seems to never be set to true (unless
170
if (
known_dead
)
Completed in 182 milliseconds