Home
last modified time | relevance | path

Searched refs:current_process_commandline_ (Results 1 – 2 of 2) sorted by relevance

/external/libchrome/base/
Dcommand_line.cc27 CommandLine* CommandLine::current_process_commandline_ = nullptr; member in base::CommandLine
195 DCHECK(!current_process_commandline_); in InitUsingArgvForTesting()
196 current_process_commandline_ = new CommandLine(NO_PROGRAM); in InitUsingArgvForTesting()
201 current_process_commandline_->InitFromArgv(argv_vector); in InitUsingArgvForTesting()
207 if (current_process_commandline_) { in Init()
214 current_process_commandline_ = new CommandLine(NO_PROGRAM); in Init()
216 current_process_commandline_->ParseFromString(::GetCommandLineW()); in Init()
218 current_process_commandline_->InitFromArgv(argc, argv); in Init()
228 DCHECK(current_process_commandline_); in Reset()
229 delete current_process_commandline_; in Reset()
[all …]
Dcommand_line.h233 static CommandLine* current_process_commandline_; variable