/ndk/sources/host-tools/make-3.81/w32/subproc/ |
sub_proc.c | 422 char *command_line; local 497 command_line = make_command_line( shell_name, exec_path, argv); 499 command_line = make_command_line( shell_name, file_info.szPathName, 502 if ( command_line == NULL ) { 512 free( command_line ); 542 command_line ? command_line : "NULL")); 545 command_line, 558 exec_path ? exec_path : "NULL", command_line); 560 free( command_line ); 959 char* command_line; local [all...] |
/external/chromium/chrome/browser/ |
background_mode_manager.cc | 8 #include "base/command_line.h" 41 CommandLine* command_line) 53 if (!IsBackgroundModeEnabled(command_line)) 60 if (command_line->HasSwitch(switches::kNoStartupWindow)) { 368 const CommandLine* command_line) { 377 !command_line->HasSwitch(switches::kDisableBackgroundMode) && 378 !command_line->HasSwitch(switches::kDisableExtensions);
|
shell_integration_win.cc | 12 #include "base/command_line.h" 218 CommandLine command_line = CommandLine::FromString(StringPrintf( 222 if (command_line.HasSwitch(switches::kUserDataDir)) { 224 command_line.GetSwitchValuePath(switches::kUserDataDir).AppendASCII( 229 if (command_line.HasSwitch(switches::kApp)) { 231 GURL(command_line.GetSwitchValueASCII(switches::kApp)))); 232 } else if (command_line.HasSwitch(switches::kAppId)) { 234 command_line.GetSwitchValueASCII(switches::kAppId))); 354 CommandLine command_line = CommandLine::FromString(value); 356 GetShortPathName(command_line.GetProgram().value().c_str() [all...] |
browser_main_win.cc | 13 #include "base/command_line.h" 52 const wchar_t* command_line, 232 CommandLine command_line(CommandLine::NO_PROGRAM); 233 command_line.AppendSwitches(parsed_command_line); 234 command_line.AppendArgs(parsed_command_line); 236 if (!command_line.HasSwitch(switches::kRestoreLastSession)) 237 command_line.AppendSwitch(switches::kRestoreLastSession); 242 command_line.command_line_string().c_str(),
|
background_mode_manager_unittest.cc | 5 #include "base/command_line.h"
|
content_setting_combo_model.cc | 7 #include "base/command_line.h"
|
spellcheck_message_filter_browsertest.cc | 5 #include "base/command_line.h"
|
browser_main_gtk.cc | 12 #include "base/command_line.h" 78 const CommandLine& command_line = *CommandLine::ForCurrentProcess(); local 82 gfx::GtkInitFromCommandLine(command_line);
|
io_thread.cc | 9 #include "base/command_line.h" 70 const CommandLine& command_line = *CommandLine::ForCurrentProcess(); local 75 if (command_line.HasSwitch(switches::kHostResolverParallelism)) { 77 command_line.GetSwitchValueASCII(switches::kHostResolverParallelism); 128 if (command_line.HasSwitch(switches::kDnsServer)) { 130 command_line.GetSwitchValueASCII(switches::kDnsServer); 145 if (!command_line.HasSwitch(switches::kEnableIPv6)) { 146 if (command_line.HasSwitch(switches::kDisableIPv6)) { 161 if (!command_line.HasSwitch(switches::kHostResolverRules)) 167 command_line.GetSwitchValueASCII(switches::kHostResolverRules)) 648 const CommandLine& command_line = *CommandLine::ForCurrentProcess(); local [all...] |
/external/chromium/chrome/browser/profiles/ |
profile_impl_io_data.cc | 7 #include "base/command_line.h" 172 const CommandLine& command_line = *CommandLine::ForCurrentProcess(); local 174 command_line.HasSwitch(switches::kRecordMode); 175 bool playback_mode = command_line.HasSwitch(switches::kPlaybackMode); 306 const CommandLine& command_line = *CommandLine::ForCurrentProcess(); local 308 command_line.HasSwitch(switches::kRecordMode); 309 bool playback_mode = command_line.HasSwitch(switches::kPlaybackMode);
|
/external/chromium/chrome/browser/prefs/ |
pref_value_store_unittest.cc | 40 const char kCommandLinePref[] = "this.pref.command_line"; 66 const char kManagedPlatformValue[] = "command_line:managed_platform"; 67 const char kManagedCloudValue[] = "command_line:managed_cloud"; 68 const char kExtensionValue[] = "command_line:extension"; 69 const char kCommandLineValue[] = "command_line:command_line"; 76 const char kCommandLineValue[] = "user:command_line"; 84 const char kCommandLineValue[] = "recommended_platform:command_line"; 94 const char kCommandLineValue[] = "recommended_cloud:command_line"; 105 const char kCommandLineValue[] = "default:command_line"; [all...] |
command_line_pref_store.cc | 38 CommandLinePrefStore::CommandLinePrefStore(const CommandLine* command_line) 39 : command_line_(command_line) {
|
pref_service_mock_builder.h | 50 PrefServiceMockBuilder& WithCommandLine(CommandLine* command_line);
|
/external/chromium/chrome/browser/chromeos/login/ |
login_utils.cc | 9 #include "base/command_line.h" 159 CommandLine *command_line); 404 CommandLine command_line(browser_command_line.GetProgram()); 408 &command_line); 417 CommandLine* command_line) { 436 command_line->CopySwitchesFrom(base_command_line, 439 command_line->AppendSwitch(switches::kGuestSession); 440 command_line->AppendSwitch(switches::kIncognito); 441 command_line->AppendSwitchASCII(switches::kLoggingLevel, 444 command_line->AppendSwitchASCII(switches::kLoginUser, kGuestUserName) [all...] |
screen_locker_browsertest.cc | 5 #include "base/command_line.h" 169 virtual void SetUpCommandLine(CommandLine* command_line) { 170 command_line->AppendSwitchASCII(switches::kLoginProfile, "user"); 171 command_line->AppendSwitch(switches::kNoFirstRun);
|
/external/chromium/base/debug/ |
debug_on_start_win.h | 43 // Returns true if the 'argument' is present in the 'command_line'. It does 45 static bool FindArgument(wchar_t* command_line, const char* argument);
|
/external/linux-tools-perf/util/scripting-engines/ |
trace-event-perl.c | 349 const char **command_line; local 352 command_line = malloc((argc + 2) * sizeof(const char *)); 353 command_line[0] = ""; 354 command_line[1] = script; 356 command_line[i] = argv[i - 2]; 361 if (perl_parse(my_perl, xs_init, argc + 2, (char **)command_line, 379 free(command_line); 383 free(command_line);
|
/ndk/sources/host-tools/make-3.81/ |
job.h | 49 unsigned int command_line; /* Index into above. */ member in struct:child 50 char *command_ptr; /* Ptr into command_lines[command_line]. */
|
/external/chromium/base/test/ |
multiprocess_test.cc | 8 #include "base/command_line.h"
|
/external/chromium/chrome/browser/first_run/ |
first_run_gtk.cc | 7 #include "base/command_line.h"
|
/external/chromium/chrome/browser/nacl_host/ |
nacl_broker_host_win.cc | 7 #include "base/command_line.h"
|
/external/chromium/chrome/browser/ui/webui/ |
print_preview_ui_html_source_unittest.cc | 5 #include "base/command_line.h"
|
/external/chromium/net/test/ |
python_utils_unittest.cc | 7 #include "base/command_line.h"
|
/external/chromium/net/tools/fetch/ |
fetch_server.cc | 6 #include "base/command_line.h"
|
/external/chromium/chrome/browser/extensions/ |
extension_webstore_private_browsertest.cc | 115 void SetUpCommandLine(CommandLine* command_line) { 116 ExtensionBrowserTest::SetUpCommandLine(command_line); 117 command_line->AppendSwitchASCII(switches::kAppsGalleryURL, test_url_base_);
|