Searched refs:command_line (Results 1 - 25 of 153) sorted by relevance

1234567

/external/chromium/chrome/browser/first_run/
H A Dupgrade_util.cc7 #include "base/command_line.h"
12 CommandLine* command_line; member in namespace:__anon1313
19 command_line = new_command_line;
23 if (command_line) {
24 if (!RelaunchChromeBrowser(*command_line)) {
29 delete command_line;
30 command_line = NULL;
H A Dfirst_run_browser_process.cc7 #include "base/command_line.h"
9 FirstRunBrowserProcess::FirstRunBrowserProcess(const CommandLine& command_line) argument
10 : BrowserProcessImpl(command_line) {
H A Dupgrade_util_win.h23 bool DoUpgradeTasks(const CommandLine& command_line);
H A Dupgrade_util.h21 bool RelaunchChromeBrowser(const CommandLine& command_line);
H A Dupgrade_util_linux.cc8 #include "base/command_line.h"
25 bool RelaunchChromeBrowser(const CommandLine& command_line) { argument
26 return base::LaunchApp(command_line, false, false, NULL);
/external/chromium/chrome/browser/extensions/
H A Dextension_devtools_browsertest.cc7 #include "base/command_line.h"
10 void ExtensionDevToolsBrowserTest::SetUpCommandLine(CommandLine* command_line) { argument
11 ExtensionBrowserTest::SetUpCommandLine(command_line);
13 command_line->AppendSwitch(switches::kEnableExtensionTimelineApi);
H A Dextension_sidebar_apitest.cc5 #include "base/command_line.h"
11 void SetUpCommandLine(CommandLine* command_line) { argument
12 ExtensionApiTest::SetUpCommandLine(command_line);
13 command_line->AppendSwitch(switches::kEnableExperimentalExtensionApis);
H A Dextension_devtools_browsertest.h17 virtual void SetUpCommandLine(CommandLine* command_line);
H A Dpermissions_apitest.cc10 void SetUpCommandLine(CommandLine* command_line) { argument
11 ExtensionApiTest::SetUpCommandLine(command_line);
12 command_line->AppendSwitch(switches::kEnableExperimentalExtensionApis);
/external/e2fsprogs/ext2ed/
H A Dext2ed.h258 extern void help (char *command_line);
259 extern void set (char *command_line);
260 extern void set_device (char *command_line);
261 extern void set_offset (char *command_line);
262 extern void set_type (char *command_line);
263 extern void show (char *command_line);
264 extern void pgup (char *command_line);
265 extern void pgdn (char *command_line);
266 extern void redraw (char *command_line);
267 extern void remember (char *command_line);
[all...]
H A Dgroup_com.c21 void type_ext2_group_desc___next (char *command_line) argument
27 ptr=parse_word (command_line,buffer);
37 void type_ext2_group_desc___prev (char *command_line) argument
43 ptr=parse_word (command_line,buffer);
53 void type_ext2_group_desc___entry (char *command_line) argument
59 ptr=parse_word (command_line,buffer);
79 void type_ext2_group_desc___gocopy (char *command_line) argument
85 ptr=parse_word (command_line,buffer);
107 void type_ext2_group_desc___show (char *command_line) argument
115 show (command_line);
134 type_ext2_group_desc___inode(char *command_line) argument
145 type_ext2_group_desc___blockbitmap(char *command_line) argument
159 type_ext2_group_desc___inodebitmap(char *command_line) argument
173 type_ext2_group_desc___setactivecopy(char *command_line) argument
[all...]
H A Dext2_com.c25 void type_ext2___super (char *command_line) argument
42 void type_ext2___cd (char *command_line) argument
55 ptr=parse_word (command_line,buffer);
73 void type_ext2___group (char *command_line) argument
87 ptr=parse_word (command_line,buffer);
/external/chromium/chrome/browser/diagnostics/
H A Ddiagnostics_main.h13 int DiagnosticsMain(const CommandLine& command_line);
/external/chromium/base/debug/
H A Ddebug_on_start_win.cc21 // Note: command_line is non-destructively modified.
22 bool DebugOnStart::FindArgument(wchar_t* command_line, const char* argument_c) { argument
28 int command_line_len = lstrlen(command_line);
30 wchar_t first_char = command_line[0];
31 wchar_t last_char = command_line[argument_len+1];
35 command_line[argument_len+1] = 0;
37 if (lstrcmpi(command_line+1, argument) == 0) {
39 command_line[argument_len+1] = last_char;
43 command_line[argument_len+1] = last_char;
46 ++command_line;
[all...]
/external/chromium/chrome/browser/prerender/
H A Dprerender_field_trial.h15 void ConfigurePrefetchAndPrerender(const CommandLine& command_line);
/external/chromium/chrome/common/
H A Dprofiling.cc8 #include "base/command_line.h"
20 const CommandLine& command_line = *CommandLine::ForCurrentProcess(); local
21 if (command_line.HasSwitch(switches::kProfilingFile))
22 profile_name = command_line.GetSwitchValueASCII(switches::kProfilingFile);
26 command_line.GetSwitchValueASCII(switches::kProcessType);
43 const CommandLine& command_line = *CommandLine::ForCurrentProcess(); local
45 command_line.GetSwitchValueASCII(switches::kProfilingFlush);
62 const CommandLine& command_line = *CommandLine::ForCurrentProcess(); local
64 command_line.GetSwitchValueASCII(switches::kProcessType);
66 if (command_line
76 const CommandLine& command_line = *CommandLine::ForCurrentProcess(); local
107 const CommandLine& command_line = *CommandLine::ForCurrentProcess(); local
[all...]
H A Dlogging_chrome.h36 void InitChromeLogging(const CommandLine& command_line,
41 FilePath GetSessionLogFile(const CommandLine& command_line);
44 void RedirectChromeLogging(const CommandLine& command_line);
/external/dbus/dbus/
H A Ddbus-shell.h32 dbus_bool_t _dbus_shell_parse_argv (const char *command_line,
/external/chromium/chrome/browser/
H A Dabout_flags_unittest.cc170 CommandLine command_line(CommandLine::NO_PROGRAM);
171 command_line.AppendSwitch("foo");
173 EXPECT_TRUE(command_line.HasSwitch("foo"));
174 EXPECT_FALSE(command_line.HasSwitch(kSwitch1));
176 ConvertFlagsToSwitches(&prefs_, &command_line);
178 EXPECT_TRUE(command_line.HasSwitch("foo"));
179 EXPECT_TRUE(command_line.HasSwitch(kSwitch1));
202 CommandLine command_line(CommandLine::NO_PROGRAM);
203 command_line.AppendSwitch("foo");
204 ConvertFlagsToSwitches(&prefs_, &command_line);
[all...]
/external/chromium/chrome/browser/chromeos/login/
H A Dlogin_browsertest.cc5 #include "base/command_line.h"
64 virtual void SetUpCommandLine(CommandLine* command_line) { argument
65 command_line->AppendSwitchASCII(switches::kLoginUser, "TestUser@gmail.com");
66 command_line->AppendSwitchASCII(switches::kLoginProfile, "user");
67 command_line->AppendSwitch(switches::kNoFirstRun);
73 virtual void SetUpCommandLine(CommandLine* command_line) { argument
74 command_line->AppendSwitchASCII(switches::kLoginProfile, "user");
75 command_line->AppendSwitch(switches::kNoFirstRun);
/external/chromium/net/tools/testserver/
H A Drun_testserver.cc8 #include "base/command_line.h"
26 CommandLine* command_line = CommandLine::ForCurrentProcess(); local
38 if (command_line->GetSwitchCount() == 0 ||
39 command_line->HasSwitch("help")) {
45 if (command_line->HasSwitch("https")) {
47 } else if (command_line->HasSwitch("ftp")) {
49 } else if (command_line->HasSwitch("sync")) {
53 FilePath doc_root = command_line->GetSwitchValuePath("doc-root");
/external/chromium/net/tools/dump_cache/
H A Ddump_cache.cc12 #include "base/command_line.h"
74 int LaunchSlave(const CommandLine& command_line, argument
77 std::wstring hacked_command_line = command_line.command_line_string();
82 bool do_upgrade = command_line.HasSwitch(kUpgrade);
83 bool do_convert_to_text = command_line.HasSwitch(kDumpToFiles);
117 const CommandLine& command_line = *CommandLine::ForCurrentProcess(); local
118 std::wstring input_path = command_line.GetSwitchValueNative(kInputPath);
126 std::wstring output_path = command_line.GetSwitchValueNative(kOutputPath);
131 if (command_line.HasSwitch(kUpgrade))
133 if (command_line
[all...]
/external/chromium/chrome/browser/sync/notifier/
H A Dsync_notifier_factory.cc9 #include "base/command_line.h"
46 const CommandLine& command_line,
55 if (command_line.HasSwitch(switches::kSyncNotificationHost)) {
56 std::string value(command_line.GetSwitchValueASCII(
67 command_line.HasSwitch(switches::kSyncTrySsltcpFirstForXmpp);
72 command_line.HasSwitch(switches::kSyncInvalidateXmppLogin);
78 command_line.HasSwitch(switches::kSyncAllowInsecureXmppConnection);
83 if (command_line.HasSwitch(switches::kSyncNotificationMethod)) {
85 command_line.GetSwitchValueASCII(switches::kSyncNotificationMethod));
105 const CommandLine& command_line,
45 CreateDefaultSyncNotifier( const CommandLine& command_line, const scoped_refptr<net::URLRequestContextGetter>& request_context_getter, const std::string& client_info) argument
104 CreateSyncNotifier( const CommandLine& command_line, const scoped_refptr<net::URLRequestContextGetter>& request_context_getter) argument
[all...]
/external/chromium/chrome/browser/chromeos/
H A Dname_value_pairs_parser.cc7 #include "base/command_line.h"
69 CommandLine command_line(argc, argv);
73 if (argc < 1 || !base::GetAppOutput(command_line, &output_string)) {
74 LOG(WARNING) << "Error excuting: " << command_line.command_line_string();
87 CommandLine command_line(argc, argv);
91 if (argc < 1 || !base::GetAppOutput(command_line, &output_string)) {
92 LOG(WARNING) << "Error excuting: " << command_line.command_line_string();
97 << command_line.command_line_string();
/external/chromium/chrome/browser/net/
H A Dproxy_service_factory.cc7 #include "base/command_line.h"
57 const CommandLine& command_line) {
60 bool use_v8 = !command_line.HasSwitch(switches::kWinHttpProxyResolver);
61 if (use_v8 && command_line.HasSwitch(switches::kSingleProcess)) {
72 if (command_line.HasSwitch(switches::kNumPacThreads)) {
73 std::string s = command_line.GetSwitchValueASCII(switches::kNumPacThreads);
53 CreateProxyService( net::NetLog* net_log, net::URLRequestContext* context, net::ProxyConfigService* proxy_config_service, const CommandLine& command_line) argument

Completed in 452 milliseconds

1234567