Home
last modified time | relevance | path

Searched refs:Exited (Results 1 – 2 of 2) sorted by relevance

/system/unwinding/libunwindstack/utils/
DPidUtils.cpp30 static bool Exited(pid_t pid) { in Exited() function
120 } else if (Exited(pid)) { in WaitForPidState()
/system/security/keystore2/test_utils/
Drun_as.rs192 WaitStatus::Exited(pid, 0) => { in get_result()
195 self.exit_status = Some(WaitStatus::Exited(pid, 0)); in get_result()
198 WaitStatus::Exited(pid, c) => { in get_result()
199 panic!("Child did not exit as expected: {:?}", WaitStatus::Exited(pid, c)); in get_result()
314 if let WaitStatus::Exited(_, 0) = status { in run_as()