Searched defs:command_line (Results 226 - 250 of 474) sorted by last modified time

1234567891011>>

/external/chromium_org/chrome/installer/mini_installer/
H A Dconfiguration.h37 const wchar_t* command_line() const { return command_line_; } function in class:mini_installer::Configuration
65 bool InitializeFromCommandLine(const wchar_t* command_line);
H A Dconfiguration_test.cc14 explicit TestConfiguration(const wchar_t* command_line) : Configuration() { argument
15 Initialize(command_line);
18 void Initialize(const wchar_t* command_line) { argument
19 ASSERT_TRUE(InitializeFromCommandLine(command_line));
62 TestConfiguration(kCommandLines[i]).command_line());
/external/chromium_org/chrome/installer/setup/
H A Dsetup_main.cc16 #include "base/command_line.h"
94 const CommandLine& command_line,
101 command_line.GetSwitchValuePath(installer::switches::kInstallArchive));
1678 wchar_t* command_line, int show_command) {
92 CreateChromeArchiveHelper( const base::FilePath& setup_exe, const CommandLine& command_line, const installer::InstallerState& installer_state, const base::FilePath& working_directory) argument
1677 wWinMain(HINSTANCE instance, HINSTANCE prev_instance, wchar_t* command_line, int show_command) argument
H A Dsetup_util.cc11 #include "base/command_line.h"
41 // Launches |setup_exe| with |command_line|, save --install-archive and its
47 const CommandLine& command_line,
53 CommandLine::SwitchMap switches(command_line.GetSwitches());
64 CommandLine::StringVector args(command_line.GetArgs());
287 const CommandLine& command_line,
292 base::FilePath prefs_source_path(command_line.GetSwitchValueNative(
304 if (!LaunchAndWaitForExistingInstall(setup_exe, command_line, &exit_code)) {
46 LaunchAndWaitForExistingInstall(const base::FilePath& setup_exe, const CommandLine& command_line, int* exit_code) argument
286 DeferToExistingInstall(const base::FilePath& setup_exe, const CommandLine& command_line, const InstallerState& installer_state, const base::FilePath& temp_path, InstallStatus* install_status) argument
/external/chromium_org/chrome/installer/test/
H A Dalternate_version_generator.cc35 #include "base/command_line.h"
488 std::wstring command_line(1, L'"');
489 command_line
498 if (!RunProcessAndWait(NULL, command_line, &exit_code))
570 std::wstring command_line; local
571 command_line.append(1, L'"')
579 if (!RunProcessAndWait(NULL, command_line, &exit_code))
624 command_line.assign(1, L'"')
630 if (!RunProcessAndWait(NULL, command_line, &exit_code))
/external/chromium_org/chrome/installer/util/
H A Dapp_command.cc34 AppCommand::AppCommand(const base::string16& command_line) argument
35 : command_line_(command_line),
H A Dapp_command.h28 // Constructs a new command that will execute the given |command_line|.
30 explicit AppCommand(const base::string16& command_line);
45 const base::string16& command_line() const { return command_line_; } function in class:installer::AppCommand
46 void set_command_line(const base::string16& command_line) { argument
47 command_line_ = command_line;
H A Dauto_launch_util.cc7 #include "base/command_line.h"
187 const CommandLine& command_line = *CommandLine::ForCurrentProcess(); local
188 if (command_line.HasSwitch(switches::kUserDataDir)) {
193 command_line.GetSwitchValuePath(switches::kUserDataDir).value();
H A Dinstall_util.cc16 #include "base/command_line.h"
383 CommandLine* command_line = CommandLine::ForCurrentProcess(); local
384 CHECK(command_line);
386 if (command_line->HasSwitch(installer::switches::kChromeSxS))
559 CommandLine* command_line) {
560 *command_line = CommandLine::FromString(L"\"" + program + L"\" " + arguments);
557 MakeUninstallCommand(const base::string16& program, const base::string16& arguments, CommandLine* command_line) argument
H A Dinstaller_state.cc11 #include "base/command_line.h"
91 void InstallerState::Initialize(const CommandLine& command_line, argument
112 command_line.HasSwitch(installer::switches::kEnsureGoogleUpdatePresent);
114 const bool is_uninstall = command_line.HasSwitch(switches::kUninstall);
295 command_line.GetSwitchValueASCII(switches::kCriticalUpdateVersion));
H A Dshell_util.cc19 #include "base/command_line.h"
721 CommandLine command_line = CommandLine::FromString(uninstall_string); local
722 exe_path = command_line.GetProgram();
1125 CommandLine command_line(CommandLine::NO_PROGRAM);
1138 command_line = CommandLine::FromString(value);
1139 if (!ShortNameFromPath(command_line.GetProgram(), &short_path))
1722 CommandLine& command_line = *CommandLine::ForCurrentProcess(); local
1723 if (command_line.HasSwitch(
1725 suffix = command_line.GetSwitchValueNative(
2031 CommandLine& command_line local
[all...]
H A Dwmi.cc96 bool WMIProcess::Launch(const std::wstring& command_line, int* process_id) { argument
108 ScopedVariant b_command_line(command_line.c_str());
/external/chromium_org/chrome/renderer/autofill/
H A Dautofill_renderer_browsertest.cc5 #include "base/command_line.h"
261 CommandLine* command_line = CommandLine::ForCurrentProcess(); variable
262 command_line->AppendSwitch(::switches::kReduceSecurityForTesting);
/external/chromium_org/chrome/renderer/
H A Dchrome_content_renderer_client.cc7 #include "base/command_line.h"
352 CommandLine* command_line = CommandLine::ForCurrentProcess(); local
353 if (command_line->HasSwitch(switches::kEnableBenchmarking))
355 if (command_line->HasSwitch(switches::kEnableNetBenchmarking))
357 if (command_line->HasSwitch(switches::kInstantProcess))
360 if (command_line->HasSwitch(switches::kPlaybackMode) ||
361 command_line->HasSwitch(switches::kRecordMode)) {
380 if (!command_line->HasSwitch(switches::kInstantProcess))
516 CommandLine* command_line = CommandLine::ForCurrentProcess(); local
517 if (command_line
1504 CommandLine* command_line = CommandLine::ForCurrentProcess(); local
[all...]
H A Dchrome_render_process_observer.cc12 #include "base/command_line.h"
258 const CommandLine& command_line = *CommandLine::ForCurrentProcess(); local
264 if (command_line.HasSwitch(switches::kEnableShowModalDialog))
267 if (command_line.HasSwitch(switches::kJavaScriptHarmony)) {
295 if (!command_line.HasSwitch(switches::kSingleProcess))
H A Dchrome_render_view_observer.cc9 #include "base/command_line.h"
170 const CommandLine& command_line = *CommandLine::ForCurrentProcess(); local
171 if (!command_line.HasSwitch(switches::kDisableClientSidePhishingDetection))
/external/chromium_org/chrome/renderer/extensions/
H A Drenderer_permissions_policy_delegate.cc7 #include "base/command_line.h"
42 CommandLine* command_line = CommandLine::ForCurrentProcess(); local
43 if (command_line->HasSwitch(::switches::kSigninProcess)) {
/external/chromium_org/chrome/renderer/net/
H A Dnet_error_helper.cc9 #include "base/command_line.h"
77 CommandLine* command_line = CommandLine::ForCurrentProcess(); local
79 command_line->HasSwitch(switches::kEnableOfflineAutoReload);
81 command_line->HasSwitch(switches::kEnableOfflineAutoReloadVisibleOnly);
180 CommandLine* command_line = CommandLine::ForCurrentProcess(); local
182 command_line->HasSwitch(switches::kEnableOfflineLoadStaleCache);
216 CommandLine* command_line = CommandLine::ForCurrentProcess(); local
218 command_line->HasSwitch(switches::kEnableOfflineLoadStaleCache);
/external/chromium_org/chrome/renderer/spellchecker/
H A Dspellcheck_provider.cc7 #include "base/command_line.h"
181 const CommandLine& command_line = *CommandLine::ForCurrentProcess(); local
182 if (command_line.HasSwitch(switches::kEnableSpellingAutoCorrect)) {
/external/chromium_org/chrome/service/
H A Dservice_process.cc11 #include "base/command_line.h"
126 const CommandLine& command_line,
163 if (command_line.HasSwitch(switches::kIgnoreUrlFetcherCertRequests))
167 std::string locale = command_line.GetSwitchValueASCII(switches::kLang);
183 PrepareRestartOnCrashEnviroment(command_line);
187 if (command_line.HasSwitch(switches::kEnableCloudPrintProxy) ||
125 Initialize(base::MessageLoopForUI* message_loop, const CommandLine& command_line, ServiceProcessState* state) argument
/external/chromium_org/chrome/test/base/
H A Din_process_browser_test.cc10 #include "base/command_line.h"
157 CommandLine* command_line = CommandLine::ForCurrentProcess(); local
163 command_line->AppendSwitch(switches::kDisableOfflineAutoReload);
166 SetUpCommandLine(command_line);
168 PrepareTestCommandLine(command_line);
181 base::FilePath log_dir = logging::GetSessionLogFile(*command_line).DirName();
220 void InProcessBrowserTest::PrepareTestCommandLine(CommandLine* command_line) { argument
222 test_launcher_utils::PrepareBrowserCommandLineForTests(command_line);
225 command_line->AppendSwitchASCII(switches::kTestType, kBrowserTestType);
228 if (command_line
263 CommandLine* command_line = CommandLine::ForCurrentProcess(); local
[all...]
H A Dtest_launcher_utils.cc7 #include "base/command_line.h"
23 void PrepareBrowserCommandLineForTests(CommandLine* command_line) { argument
25 command_line->AppendSwitch(switches::kDisableWebResources);
29 command_line->AppendSwitch(switches::kDisablePreconnect);
32 command_line->AppendSwitch(switches::kNoFirstRun);
36 command_line->AppendSwitch(switches::kNoDefaultBrowserCheck);
40 if (!command_line->HasSwitch(switches::kEnableLogging))
41 command_line->AppendSwitchASCII(switches::kEnableLogging, "stderr");
42 if (!command_line->HasSwitch(switches::kLoggingLevel))
43 command_line
[all...]
/external/chromium_org/chrome/test/nacl/
H A Dnacl_browsertest_util.cc8 #include "base/command_line.h"
197 void NaClBrowserTestBase::SetUpCommandLine(base::CommandLine* command_line) { argument
198 command_line->AppendSwitch(switches::kEnableNaCl);
292 base::CommandLine* command_line) {
293 NaClBrowserTestBase::SetUpCommandLine(command_line);
294 command_line->AppendSwitch(switches::kEnableNaClNonSfiMode);
311 base::CommandLine* command_line) {
312 NaClBrowserTestBase::SetUpCommandLine(command_line);
313 command_line->AppendSwitch(switches::kEnableNaClNonSfiMode);
317 CommandLine* command_line) {
291 SetUpCommandLine( base::CommandLine* command_line) argument
310 SetUpCommandLine( base::CommandLine* command_line) argument
316 SetUpCommandLine( CommandLine* command_line) argument
334 SetUpCommandLine( CommandLine* command_line) argument
[all...]
/external/chromium_org/chrome/test/perf/
H A Dbrowser_perf_test.cc7 #include "base/command_line.h"
18 void BrowserPerfTest::SetUpCommandLine(CommandLine* command_line) { argument
20 command_line->AppendSwitch(switches::kDisableBackgroundNetworking);
/external/chromium_org/chrome/test/ppapi/
H A Dppapi_test.cc7 #include "base/command_line.h"
42 void AddPrivateSwitches(base::CommandLine* command_line) { argument
44 command_line->AppendSwitch(switches::kUnlimitedStorage);
45 command_line->AppendSwitchASCII(switches::kAllowNaClFileHandleAPI,
134 void PPAPITestBase::SetUpCommandLine(base::CommandLine* command_line) { argument
136 command_line->AppendSwitch(switches::kEnableFileCookies);
140 command_line->AppendSwitch(switches::kEnablePepperTesting);
143 command_line->AppendSwitch(switches::kDisableSmoothScrolling);
285 void PPAPITest::SetUpCommandLine(base::CommandLine* command_line) { argument
286 PPAPITestBase::SetUpCommandLine(command_line);
317 SetUpCommandLine(base::CommandLine* command_line) argument
326 SetUpCommandLine(base::CommandLine* command_line) argument
332 SetUpCommandLine( base::CommandLine* command_line) argument
338 SetUpCommandLine(base::CommandLine* command_line) argument
398 SetUpCommandLine( base::CommandLine* command_line) argument
411 SetUpCommandLine( base::CommandLine* command_line) argument
424 SetUpCommandLine( base::CommandLine* command_line) argument
430 SetUpCommandLine( base::CommandLine* command_line) argument
445 SetUpCommandLine( base::CommandLine* command_line) argument
451 SetUpCommandLine( base::CommandLine* command_line) argument
[all...]

Completed in 322 milliseconds

1234567891011>>