HomeSort by relevance Sort by last modified time
    Searched refs:command_line (Results 1 - 25 of 162) sorted by null

1 2 3 4 5 6 7

  /external/chromium/chrome/browser/first_run/
upgrade_util.cc 7 #include "base/command_line.h"
12 CommandLine* command_line; member in namespace:__anon3187
19 command_line = new_command_line;
23 if (command_line) {
24 if (!RelaunchChromeBrowser(*command_line)) {
29 delete command_line;
30 command_line = NULL;
first_run_browser_process.cc 7 #include "base/command_line.h"
9 FirstRunBrowserProcess::FirstRunBrowserProcess(const CommandLine& command_line)
10 : BrowserProcessImpl(command_line) {
upgrade_util_win.h 23 bool DoUpgradeTasks(const CommandLine& command_line);
upgrade_util.h 21 bool RelaunchChromeBrowser(const CommandLine& command_line);
first_run_browser_process.h 18 explicit FirstRunBrowserProcess(const CommandLine& command_line);
upgrade_util_linux.cc 8 #include "base/command_line.h"
25 bool RelaunchChromeBrowser(const CommandLine& command_line) {
26 return base::LaunchApp(command_line, false, false, NULL);
  /external/chromium/chrome/browser/extensions/
extension_devtools_browsertest.cc 7 #include "base/command_line.h"
10 void ExtensionDevToolsBrowserTest::SetUpCommandLine(CommandLine* command_line) {
11 ExtensionBrowserTest::SetUpCommandLine(command_line);
13 command_line->AppendSwitch(switches::kEnableExtensionTimelineApi);
extension_sidebar_apitest.cc 5 #include "base/command_line.h"
11 void SetUpCommandLine(CommandLine* command_line) {
12 ExtensionApiTest::SetUpCommandLine(command_line);
13 command_line->AppendSwitch(switches::kEnableExperimentalExtensionApis);
extension_devtools_browsertest.h 17 virtual void SetUpCommandLine(CommandLine* command_line);
permissions_apitest.cc 10 void SetUpCommandLine(CommandLine* command_line) {
11 ExtensionApiTest::SetUpCommandLine(command_line);
12 command_line->AppendSwitch(switches::kEnableExperimentalExtensionApis);
  /external/e2fsprogs/ext2ed/
ext2ed.h 258 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...]
group_com.c 21 void type_ext2_group_desc___next (char *command_line)
27 ptr=parse_word (command_line,buffer);
37 void type_ext2_group_desc___prev (char *command_line)
43 ptr=parse_word (command_line,buffer);
53 void type_ext2_group_desc___entry (char *command_line)
59 ptr=parse_word (command_line,buffer);
79 void type_ext2_group_desc___gocopy (char *command_line)
85 ptr=parse_word (command_line,buffer);
107 void type_ext2_group_desc___show (char *command_line)
115 show (command_line);
    [all...]
  /external/chromium/chrome/browser/diagnostics/
diagnostics_main.h 13 int DiagnosticsMain(const CommandLine& command_line);
  /external/chromium/chrome/browser/prerender/
prerender_field_trial.h 15 void ConfigurePrefetchAndPrerender(const CommandLine& command_line);
  /external/chromium/base/debug/
debug_on_start_win.cc 21 // Note: command_line is non-destructively modified.
22 bool DebugOnStart::FindArgument(wchar_t* command_line, const char* argument_c) {
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/common/
profiling.cc 8 #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.HasSwitch(switches::kProfilingAtStart))
76 const CommandLine& command_line = *CommandLine::ForCurrentProcess(); local
107 const CommandLine& command_line = *CommandLine::ForCurrentProcess(); local
    [all...]
logging_chrome.h 36 void InitChromeLogging(const CommandLine& command_line,
41 FilePath GetSessionLogFile(const CommandLine& command_line);
44 void RedirectChromeLogging(const CommandLine& command_line);
  /external/dbus/dbus/
dbus-shell.h 32 dbus_bool_t _dbus_shell_parse_argv (const char *command_line,
  /external/chromium/chrome/browser/
about_flags_unittest.cc 170 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/
login_browsertest.cc 5 #include "base/command_line.h"
64 virtual void SetUpCommandLine(CommandLine* command_line) {
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) {
74 command_line->AppendSwitchASCII(switches::kLoginProfile, "user");
75 command_line->AppendSwitch(switches::kNoFirstRun);
  /external/chromium/net/tools/testserver/
run_testserver.cc 8 #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/chrome/browser/printing/
print_dialog_cloud.h 26 // Parse switches from command_line and display the print dialog as appropriate.
27 bool CreatePrintDialogFromCommandLine(const CommandLine& command_line);
  /external/chromium/net/tools/dump_cache/
dump_cache.cc 12 #include "base/command_line.h"
74 int LaunchSlave(const CommandLine& command_line,
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.HasSwitch(kDumpToFiles)
    [all...]
  /external/chromium/chrome/browser/sync/notifier/
sync_notifier_factory.cc 9 #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,
    [all...]
  /external/chromium/chrome/browser/chromeos/
name_value_pairs_parser.cc 7 #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();

Completed in 316 milliseconds

1 2 3 4 5 6 7