HomeSort by relevance Sort by last modified time
    Searched full:command_line (Results 26 - 50 of 400) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/chromium/chrome/browser/first_run/
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);
upgrade_util_win.cc 11 #include "base/command_line.h"
64 bool RelaunchChromeBrowser(const CommandLine& command_line) {
68 command_line.command_line_string(), false, false, NULL);
113 bool DoUpgradeTasks(const CommandLine& command_line) {
117 if (!RelaunchChromeBrowser(command_line)) {
  /external/e2fsprogs/ext2ed/
ext2_com.c 25 void type_ext2___super (char *command_line)
42 void type_ext2___cd (char *command_line)
55 ptr=parse_word (command_line,buffer);
73 void type_ext2___group (char *command_line)
87 ptr=parse_word (command_line,buffer);
inodebitmap_com.c 26 void type_ext2_inode_bitmap___entry (char *command_line)
32 ptr=parse_word (command_line,buffer);
48 void type_ext2_inode_bitmap___next (char *command_line)
54 ptr=parse_word (command_line,buffer);
64 void type_ext2_inode_bitmap___prev (char *command_line)
70 ptr=parse_word (command_line,buffer);
80 void type_ext2_inode_bitmap___allocate (char *command_line)
86 ptr=parse_word (command_line,buffer);
106 void type_ext2_inode_bitmap___deallocate (char *command_line)
112 ptr=parse_word (command_line,buffer)
    [all...]
blockbitmap_com.c 32 void type_ext2_block_bitmap___entry (char *command_line)
47 ptr=parse_word (command_line,buffer); /* Get the requested entry */
69 void type_ext2_block_bitmap___next (char *command_line)
81 ptr=parse_word (command_line,buffer);
91 void type_ext2_block_bitmap___prev (char *command_line)
97 ptr=parse_word (command_line,buffer);
107 void type_ext2_block_bitmap___allocate (char *command_line)
121 ptr=parse_word (command_line,buffer); /* Get the number of blocks to allocate */
142 void type_ext2_block_bitmap___deallocate (char *command_line)
150 ptr=parse_word (command_line,buffer)
    [all...]
file_com.c 50 void type_file___inode (char *command_line)
56 void type_file___show (char *command_line)
65 void type_file___nextblock (char *command_line)
71 ptr=parse_word (command_line,buffer);
93 void type_file___next (char *command_line)
99 ptr=parse_word (command_line,buffer);
116 void type_file___offset (char *command_line)
122 ptr=parse_word (command_line,buffer);
143 void type_file___prev (char *command_line)
149 ptr=parse_word (command_line,buffer)
    [all...]
main.c 198 char *ptr,command_line [80]; local
241 strcpy (command_line,ptr);
244 if (*command_line != 0)
245 add_history (command_line);
248 if (*command_line==0)
249 strcpy (command_line,last_command_line);
255 wprintw (command_win,command_line);
260 strcpy (last_command_line,command_line);
263 quit=dispatch (command_line);
299 char command_line [80] local
    [all...]
super_com.c 24 void type_ext2_super_block___show (char *command_line)
30 show (command_line);
119 void type_ext2_super_block___gocopy (char *command_line)
125 ptr=parse_word (command_line,buffer);
146 void type_ext2_super_block___setactivecopy (char *command_line)
  /external/chromium/chrome/browser/ui/
browser_init_browsertest.cc 5 #include "base/command_line.h"
112 CommandLine command_line(CommandLine::NO_PROGRAM);
113 command_line.AppendSwitchASCII(switches::kAppId, extension_app->id());
115 BrowserInit::LaunchWithProfile launch(FilePath(), command_line); local
141 CommandLine command_line(CommandLine::NO_PROGRAM);
142 command_line.AppendSwitchASCII(switches::kAppId, extension_app->id());
143 BrowserInit::LaunchWithProfile launch(FilePath(), command_line); local
171 CommandLine command_line(CommandLine::NO_PROGRAM);
172 command_line.AppendSwitchASCII(switches::kAppId, extension_app->id());
173 BrowserInit::LaunchWithProfile launch(FilePath(), command_line); local
202 BrowserInit::LaunchWithProfile launch(FilePath(), command_line); local
    [all...]
  /external/chromium/chrome/browser/net/
proxy_service_factory.cc 7 #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);
  /external/chromium/chrome/browser/extensions/
extension_gallery_install_apitest.cc 18 void SetUpCommandLine(CommandLine* command_line) {
19 ExtensionApiTest::SetUpCommandLine(command_line);
20 command_line->AppendSwitchASCII(switches::kAppsGalleryURL,
extension_get_views_apitest.cc 5 #include "base/command_line.h"
window_open_apitest.cc 5 #include "base/command_line.h"
104 virtual void SetUpCommandLine(CommandLine* command_line) {
105 ExtensionApiTest::SetUpCommandLine(command_line);
106 command_line->AppendSwitch(switches::kEnableExperimentalExtensionApis);
  /external/chromium/chrome/browser/
plugin_data_remover_browsertest.cc 7 #include "base/command_line.h"
45 virtual void SetUpCommandLine(CommandLine* command_line) {
49 command_line->AppendSwitchPath(switches::kExtraPluginDir,
gpu_data_manager.cc 7 #include "base/command_line.h"
128 CommandLine* command_line) {
130 DCHECK(command_line);
134 !command_line->HasSwitch(switches::kDisableExperimentalWebGL))
135 command_line->AppendSwitch(switches::kDisableExperimentalWebGL);
137 !command_line->HasSwitch(switches::kDisableGLMultisampling))
138 command_line->AppendSwitch(switches::kDisableGLMultisampling);
147 if (!command_line->HasSwitch(switches[i]))
148 command_line->AppendSwitch(switches[i]);
  /external/chromium/base/debug/
debugger_win.cc 79 wchar_t command_line[1026]; local
80 if (StringReplace(reg_value, process_id, command_line,
81 arraysize(command_line))) {
88 if (CreateProcess(NULL, command_line, NULL, NULL, FALSE, 0, NULL, NULL,
  /external/chromium/chrome/browser/prerender/
prerender_field_trial.h 15 void ConfigurePrefetchAndPrerender(const CommandLine& command_line);
  /external/chromium/chrome/browser/profiles/
profile_manager.cc 9 #include "base/command_line.h"
118 const CommandLine& command_line = *CommandLine::ForCurrentProcess(); local
122 if (command_line.HasSwitch(switches::kLoginProfile)) {
123 profile_dir = command_line.GetSwitchValuePath(switches::kLoginProfile);
144 const CommandLine& command_line = *CommandLine::ForCurrentProcess(); local
151 if (!command_line.HasSwitch(switches::kTestType) ||
152 command_line.HasSwitch(switches::kLoginProfile)) {
339 const CommandLine& command_line = *CommandLine::ForCurrentProcess(); local
340 if (!command_line.HasSwitch(switches::kTestType)) {
356 const CommandLine& command_line = *CommandLine::ForCurrentProcess() local
385 const CommandLine& command_line = *CommandLine::ForCurrentProcess(); local
    [all...]
  /external/dbus/test/
shell-test.c 18 char *command_line, *tmp; local
48 command_line = _dbus_string_get_data (&str);
49 printf ("\n\nTesting command line '%s'\n", command_line);
52 if (!_dbus_shell_parse_argv (command_line, &shell_argc, &shell_argv, &error))
  /external/chromium/chrome/browser/prefs/
command_line_pref_store.h 10 #include "base/command_line.h"
21 explicit CommandLinePrefStore(const CommandLine* command_line);
pref_service_unittest.cc 8 #include "base/command_line.h"
221 CommandLine command_line(CommandLine::NO_PROGRAM);
222 command_line.AppendSwitchASCII(switches::kProxyBypassList, "123");
223 command_line.AppendSwitchASCII(switches::kProxyServer, "789");
237 builder.WithCommandLine(&command_line);
249 builder.WithCommandLine(&command_line);
261 CommandLine command_line(CommandLine::NO_PROGRAM);
262 command_line.AppendSwitchASCII(switches::kProxyBypassList, "123");
263 command_line.AppendSwitchASCII(switches::kProxyServer, "789");
273 builder.WithCommandLine(&command_line);
    [all...]
  /external/webkit/Tools/android/flex-2.5.4a/MISC/VMS/
mkskel.tpu 11 skelfile := CREATE_BUFFER("file", GET_INFO(COMMAND_LINE, "file_name"));
43 WRITE_FILE(skelfile, GET_INFO(COMMAND_LINE, "output_file"));
  /external/chromium/net/test/
test_server.cc 18 #include "base/command_line.h"
344 bool TestServer::AddCommandLineArguments(CommandLine* command_line) const {
345 command_line->AppendSwitchASCII("port",
347 command_line->AppendSwitchPath("data-dir", document_root_);
350 command_line->AppendArg("--log-to-console");
354 command_line->AppendArg("-f");
356 command_line->AppendArg("--sync");
366 command_line->AppendSwitchPath("https", certificate_path);
369 command_line->AppendSwitch("ssl-client-auth");
380 command_line->AppendSwitchPath("ssl-client-ca", *it)
    [all...]
  /external/chromium/chrome/browser/sync/tools/
sync_listen_notifications.cc 10 #include "base/command_line.h"
77 const CommandLine& command_line = *CommandLine::ForCurrentProcess(); local
78 std::string email = command_line.GetSwitchValueASCII("email");
79 std::string token = command_line.GetSwitchValueASCII("token");
99 sync_notifier_factory.CreateSyncNotifier(command_line,
  /external/chromium/chrome/common/
logging_chrome.cc 33 #include "base/command_line.h"
130 LoggingDestination DetermineLogMode(const CommandLine& command_line) {
144 if (command_line.HasSwitch(kInvertLoggingSwitch))
151 if (command_line.GetSwitchValueASCII(switches::kEnableLogging) == "stderr")
215 FilePath GetSessionLogFile(const CommandLine& command_line) {
225 command_line.GetSwitchValuePath(switches::kLoginProfile);
231 void RedirectChromeLogging(const CommandLine& command_line) {
237 FilePath log_path = GetSessionLogFile(command_line);
246 command_line.HasSwitch(switches::kEnableDCHECK) ?
253 DetermineLogMode(command_line),
    [all...]

Completed in 761 milliseconds

12 3 4 5 6 7 8 91011>>