HomeSort by relevance Sort by last modified time
    Searched refs:Exited (Results 1 - 9 of 9) sorted by null

  /external/libchrome/base/process/
process.h 137 // Indicates that the process has exited with the specified |exit_code|.
142 void Exited(int exit_code) const;
process_posix.cc 44 // has already exited, otherwise to loop for |wait|, sleeping for
65 // If the process hasn't exited yet, then sleep and try again.
191 const bool exited = (parent_pid < 0); local
193 if (!exited && parent_pid != our_pid) {
205 return exited;
216 return exited;
343 bool exited = WaitForExitWithTimeoutImpl(Handle(), &local_exit_code, timeout); local
344 if (exited) {
345 Exited(local_exit_code);
349 return exited;
    [all...]
  /external/clang/include/clang/Sema/
Template.h 220 /// \brief Whether we have already exited this scope.
221 bool Exited;
248 Exited(false), CombineWithOuterScope(CombineWithOuterScope),
262 if (Exited)
269 Exited = true;
  /build/blueprint/gotestrunner/
gotestrunner.go 93 if status, ok := e.Sys().(syscall.WaitStatus); ok && status.Exited() {
  /build/soong/cmd/javac_wrapper/
javac_wrapper.go 99 if status.Exited() {
  /build/soong/cmd/path_interposer/
main.go 147 if status.Exited() {
  /external/syzkaller/vendor/golang.org/x/sys/unix/
syscall_bsd.go 75 // Wait status is 7 bits at bottom, either 0 (exited),
88 exited = 0
92 func (w WaitStatus) Exited() bool { return w&mask == exited }
95 if w&mask != exited {
86 exited = 0 const
syscall_linux.go 281 // Wait status is 7 bits at bottom, either 0 (exited),
293 exited = 0x00
298 func (w WaitStatus) Exited() bool { return w&mask == exited }
300 func (w WaitStatus) Signaled() bool { return w&mask != stopped && w&mask != exited }
309 if !w.Exited() {
292 exited = 0x00 const
    [all...]
syscall_solaris.go 198 // Wait status is 7 bits at bottom, either 0 (exited),
211 exited = 0
215 func (w WaitStatus) Exited() bool { return w&mask == exited }
218 if w&mask != exited {
209 exited = 0 const

Completed in 482 milliseconds