Searched refs:known_dead (Results 1 - 13 of 13) sorted by relevance

/external/chromium_org/content/browser/
H A Dchild_process_launcher.h57 // |known_dead| can be true if we already know the process is dead as it can
59 // On Linux, the use of |known_dead| is subtle and can be crucial if an
60 // accurate status is important. With |known_dead| set to false, a dead
61 // process could be seen as running. With |known_dead| set to true, the
67 base::TerminationStatus GetChildTerminationStatus(bool known_dead,
H A Dbrowser_child_process_host_impl.h55 bool known_dead, int* exit_code) OVERRIDE;
H A Dchild_process_launcher.cc464 bool known_dead,
476 GetTerminationStatus(handle, known_dead, &context_->exit_code_);
477 } else if (known_dead) {
482 if (known_dead) {
463 GetChildTerminationStatus( bool known_dead, int* exit_code) argument
H A Dbrowser_child_process_host_impl.cc225 bool known_dead, int* exit_code) {
229 return child_process_->GetChildTerminationStatus(known_dead,
277 true /* known_dead */, &exit_code);
224 GetTerminationStatus( bool known_dead, int* exit_code) argument
/external/chromium_org/content/public/browser/
H A Dbrowser_child_process_host.h58 // |known_dead| indicates that the child is already dead. On Linux, this
62 bool known_dead, int* exit_code) = 0;
/external/chromium_org/content/public/common/
H A Dzygote_fork_delegate_linux.h76 // |known_dead| indicates that the process is already dead and that a
79 virtual bool GetTerminationStatus(pid_t pid, bool known_dead,
/external/chromium_org/components/nacl/zygote/
H A Dnacl_fork_delegate_linux.h48 virtual bool GetTerminationStatus(pid_t pid, bool known_dead,
H A Dnacl_fork_delegate_linux.cc377 bool NaClForkDelegate::GetTerminationStatus(pid_t pid, bool known_dead, argument
387 write_pickle.WriteBool(known_dead);
/external/chromium_org/content/browser/zygote_host/
H A Dzygote_host_impl_linux.h46 // |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,
H A Dzygote_host_impl_linux.cc510 bool known_dead,
515 pickle.WriteBool(known_dead);
508 GetTerminationStatus( base::ProcessHandle handle, bool known_dead, int* exit_code) argument
/external/chromium_org/content/zygote/
H A Dzygote_linux.cc258 // with known_dead set to true.
264 GetTerminationStatus(child, true /* known_dead */, &status, &exit_code);
271 bool known_dead,
286 child, known_dead, status, exit_code)) {
291 if (known_dead) {
310 bool known_dead; local
313 if (!pickle.ReadBool(&iter, &known_dead) ||
324 GetTerminationStatus(child_requested, known_dead, &status, &exit_code);
270 GetTerminationStatus(base::ProcessHandle real_pid, bool known_dead, base::TerminationStatus* status, int* exit_code) argument
H A Dzygote_linux.h70 bool GetTerminationStatus(base::ProcessHandle real_pid, bool known_dead,
/external/chromium_org/components/nacl/loader/
H A Dnacl_helper_linux.cc209 bool known_dead; local
210 if (!input_iter->ReadBool(&known_dead)) {
211 LOG(ERROR) << "Could not read known_dead status";
214 // TODO(jln): With NaCl, known_dead seems to never be set to true (unless
221 if (known_dead)

Completed in 237 milliseconds