Lines Matching defs:argv
312 if (env->argv().size() > 1) {
313 first_argv = env->argv()[1];
788 int InitializeNodeWithArgs(std::vector<std::string>* argv,
791 return InitializeNodeWithArgs(argv, exec_argv, errors,
795 int InitializeNodeWithArgs(std::vector<std::string>* argv,
816 per_process::cli_options->cmdline = *argv;
837 // [0] is expected to be the program name, fill it in from the real argv.
838 env_argv.insert(env_argv.begin(), argv->at(0));
850 const int exit_code = ProcessGlobalArgs(argv,
857 // Set the process.title immediately after processing argv if --title is set.
1224 int Start(int argc, char** argv) {
1226 std::tie(argc, argv) = sea::FixupArgsForSEA(argc, argv);
1231 // Hack around with the argv pointer. Used for process.title = "blah".
1232 argv = uv_setup_args(argc, argv);
1235 InitializeOncePerProcess(std::vector<std::string>(argv, argv + argc));