Lines Matching defs:status

216   m << "Exited with exit status " << exit_code;
221 m << "Exited with exit status " << WEXITSTATUS(exit_code);
290 // then exits with status 1.
424 int status() const { return status_; }
450 // The exit status of the child process.
498 << "unexpected status byte ("
513 // Writes a status byte to the child's status file descriptor, then
560 // status: The exit status of the child process. On *nix, it is in the
613 << " " << ExitSummary(status()) << "\n"
700 // status, or 0 if no child process exists. As a side effect, sets the
736 return status();
858 // status, or 0 if no child process exists. As a side effect, sets the
944 return status();
983 zx_status_t status;
986 status = fdio_pipe_half(&child_pipe_fd, &child_pipe_handle);
987 GTEST_DEATH_TEST_CHECK_(status == ZX_OK);
999 status = zx::socket::create(0, &stderr_producer_socket, &stderr_socket_);
1000 GTEST_DEATH_TEST_CHECK_(status >= 0);
1002 status =
1004 GTEST_DEATH_TEST_CHECK_(status >= 0);
1016 status = zx_job_create(zx_job_default(), 0, &child_job);
1017 GTEST_DEATH_TEST_CHECK_(status == ZX_OK);
1021 status = zx_job_set_policy(child_job, ZX_JOB_POL_RELATIVE, ZX_JOB_POL_BASIC,
1023 GTEST_DEATH_TEST_CHECK_(status == ZX_OK);
1027 status = zx_task_create_exception_channel(
1029 GTEST_DEATH_TEST_CHECK_(status == ZX_OK);
1038 status = fdio_spawn_etc(child_job, FDIO_SPAWN_CLONE_ALL, argv[0], argv.get(),
1041 GTEST_DEATH_TEST_CHECK_(status == ZX_OK);
1075 // status, or 0 if no child process exists. As a side effect, sets the
1098 // straightforward fork, with a simple pipe to transmit the status byte.