HomeSort by relevance Sort by last modified time
    Searched full:command_line (Results 126 - 150 of 393) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/chromium/chrome/browser/chromeos/cros/
login_library.cc 147 bool RestartJob(int pid, const std::string& command_line) {
152 job_restart_request_ = new JobRestartRequest(pid, command_line);
160 JobRestartRequest(int pid, const std::string& command_line)
162 command_line_(command_line),
359 bool RestartJob(int pid, const std::string& command_line) { return true; }
  /external/chromium/chrome/browser/
process_info_snapshot_mac.cc 11 #include "base/command_line.h"
145 CommandLine command_line(argv);
147 if (!base::GetAppOutputRestricted(command_line, &output, 1024 * 1024)) {
212 CommandLine command_line(argv);
214 if (!base::GetAppOutputRestricted(command_line, &output, 1024 * 1024)) {
296 CommandLine command_line(argv);
298 if (!base::GetAppOutputRestricted(command_line, &output, 1024 * 1024)) {
process_singleton_uitest.cc 64 CommandLine command_line(browser_directory.Append(
67 command_line.AppendSwitchPath(switches::kUserDataDir, user_data_dir_);
70 command_line.AppendSwitch(switches::kFirstRun);
72 command_line.AppendSwitch(switches::kNoFirstRun);
87 command_line.AppendSwitchNative(switch_name, i->second);
100 base::LaunchApp(command_line, false /* wait */,
mach_broker_mac.cc 7 #include "base/command_line.h"
238 const CommandLine& command_line = *CommandLine::ForCurrentProcess(); local
239 const bool is_child = command_line.HasSwitch(switches::kProcessType);
about_flags.cc 12 #include "base/command_line.h"
307 void ConvertFlagsToSwitches(PrefService* prefs, CommandLine* command_line);
473 void ConvertFlagsToSwitches(PrefService* prefs, CommandLine* command_line) {
474 FlagsState::GetInstance()->ConvertFlagsToSwitches(prefs, command_line);
565 PrefService* prefs, CommandLine* command_line) {
566 if (command_line->HasSwitch(switches::kNoExperiments))
591 command_line->AppendSwitch(switches::kFlagSwitchesBegin);
609 command_line->AppendSwitchASCII(switch_and_value_pair.first,
613 command_line->AppendSwitch(switches::kFlagSwitchesEnd);
gpu_data_manager.h 67 void AppendRendererCommandLine(CommandLine* command_line);
background_mode_manager.h 46 BackgroundModeManager(Profile* profile, CommandLine* command_line);
49 static bool IsBackgroundModeEnabled(const CommandLine* command_line);
process_singleton.h 73 NotifyResult NotifyOtherProcessWithTimeout(const CommandLine& command_line,
77 const CommandLine& command_line,
  /external/linux-tools-perf/util/scripting-engines/
trace-event-python.c 365 const char **command_line; local
370 command_line = malloc((argc + 1) * sizeof(const char *));
371 command_line[0] = script;
373 command_line[i] = argv[i - 1];
379 PySys_SetArgv(argc + 1, (char **)command_line);
401 free(command_line);
406 free(command_line);
  /external/chromium/chrome/browser/sync/
profile_sync_factory_impl.cc 5 #include "base/command_line.h"
79 CommandLine* command_line)
81 command_line_(command_line) {
  /external/qemu/distrib/sdl-1.2.15/src/video/riscos/
SDL_riscostask.c 190 char *command_line = (char *)regs.r[0]; local
191 size_t len = SDL_strlen(command_line)+1;
196 SDL_strlcpy(buffer, command_line, len);
  /external/chromium/android/
prefix.h 39 // Called by command_line.cc to shorten the process name. Not needed for
  /external/chromium/base/test/
test_timeouts.cc 7 #include "base/command_line.h"
  /external/chromium/chrome/browser/chromeos/login/
login_utils.h 99 CommandLine* command_line) = 0;
  /external/chromium/chrome/browser/diagnostics/
diagnostics_model_unittest.cc 7 #include "base/command_line.h"
  /external/chromium/chrome/browser/extensions/
extension_webnavigation_apitest.cc 5 #include "base/command_line.h"
extension_apitest.cc 240 void ExtensionApiTest::SetUpCommandLine(CommandLine* command_line) {
241 ExtensionBrowserTest::SetUpCommandLine(command_line);
extension_browsertest.h 11 #include "base/command_line.h"
28 virtual void SetUpCommandLine(CommandLine* command_line);
  /external/chromium/chrome/browser/net/
chrome_cookie_policy.cc 7 #include "base/command_line.h"
  /external/chromium/chrome/browser/ui/tabs/
tab_menu_model.cc 7 #include "base/command_line.h"
  /external/chromium/chrome/browser/ui/webui/
mediaplayer_browsertest.cc 5 #include "base/command_line.h"
  /external/chromium/chrome/common/
service_process_util_linux.cc 10 #include "base/command_line.h"
  /external/chromium/chrome/browser/printing/
print_dialog_cloud.cc 9 #include "base/command_line.h"
587 bool CreatePrintDialogFromCommandLine(const CommandLine& command_line) {
588 if (!command_line.GetSwitchValuePath(switches::kCloudPrintFile).empty()) {
591 command_line.GetSwitchValuePath(switches::kCloudPrintFile);
594 if (command_line.HasSwitch(switches::kCloudPrintJobTitle)) {
597 native_job_title = command_line.GetSwitchValueNative(
606 if (command_line.HasSwitch(switches::kCloudPrintFileType)) {
607 file_type = command_line.GetSwitchValueASCII(
  /external/chromium/net/test/
test_server.h 159 // |command_line|. Return true on success.
160 bool AddCommandLineArguments(CommandLine* command_line) const;
  /external/chromium/base/
command_line.cc 5 #include "base/command_line.h"
188 CommandLine CommandLine::FromString(const std::wstring& command_line) {
190 cmd.ParseFromString(command_line);
439 void CommandLine::ParseFromString(const std::wstring& command_line) {
440 TrimWhitespace(command_line, TRIM_ALL, &command_line_string_);

Completed in 285 milliseconds

1 2 3 4 56 7 8 91011>>