HomeSort by relevance Sort by last modified time
    Searched refs:current_process_commandline_ (Results 1 - 2 of 2) sorted by null

  /external/chromium/base/
command_line.h 73 // in |current_process_commandline_|. Used by the zygote host so that
92 DCHECK(current_process_commandline_);
93 return current_process_commandline_;
193 DCHECK(current_process_commandline_);
194 return current_process_commandline_;
199 static CommandLine* current_process_commandline_; member in class:CommandLine
command_line.cc 33 CommandLine* CommandLine::current_process_commandline_ = NULL; member in class:CommandLine
193 delete current_process_commandline_;
194 current_process_commandline_ = new CommandLine;
196 current_process_commandline_->ParseFromString(::GetCommandLineW());
198 current_process_commandline_->InitFromArgv(argc, argv);
241 for (size_t i = 1; i < current_process_commandline_->argv_.size(); ++i) {
244 title += current_process_commandline_->argv_[i];
252 DCHECK(current_process_commandline_ != NULL);
253 delete current_process_commandline_;
254 current_process_commandline_ = NULL
    [all...]

Completed in 97 milliseconds