Home | History | Annotate | Download | only in src

Lines Matching defs:argv

911   char* const* Argv() {
922 char* const* argv; // Command-line arguments for the child's call to exec
965 execve(args->argv[0], args->argv, GetEnviron());
966 DeathTestAbort(std::string("execve(") + args->argv[0] + ", ...) in " +
1004 static pid_t ExecDeathTestSpawnChild(char* const* argv, int close_fd) {
1005 ExecDeathTestArgs args = { argv, close_fd };
1033 child_pid = spawn(args.argv[0], 0, NULL, &inherit, args.argv, GetEnviron());
1140 const pid_t child_pid = ExecDeathTestSpawnChild(args.Argv(), pipe_fd[0]);