Home | History | Annotate | Download | only in src

Lines Matching defs:argv

925   char* const* Argv() {
936 char* const* argv; // Command-line arguments for the child's call to exec
979 execve(args->argv[0], args->argv, GetEnviron());
980 DeathTestAbort(std::string("execve(") + args->argv[0] + ", ...) in " +
1018 static pid_t ExecDeathTestSpawnChild(char* const* argv, int close_fd) {
1019 ExecDeathTestArgs args = { argv, close_fd };
1047 child_pid = spawn(args.argv[0], 0, NULL, &inherit, args.argv, GetEnviron());
1154 const pid_t child_pid = ExecDeathTestSpawnChild(args.Argv(), pipe_fd[0]);