HomeSort by relevance Sort by last modified time
    Searched refs:CommandLine (Results 751 - 775 of 1825) sorted by null

<<31323334353637383940>>

  /external/chromium/chrome/common/
sandbox_policy.cc 366 bool LoadFlashBroker(const FilePath& plugin_path, CommandLine* cmd_line) {
448 bool IsBuiltInFlash(const CommandLine* cmd_line, FilePath* flash_path) {
468 bool AddPolicyForPlugin(CommandLine* cmd_line,
472 std::wstring trusted_plugins = CommandLine::ForCurrentProcess()->
518 bool AddPolicyForGPU(CommandLine*, sandbox::TargetPolicy* policy) {
548 bool use_winsta = !CommandLine::ForCurrentProcess()->HasSwitch(
574 base::ProcessHandle StartProcessWithAccess(CommandLine* cmd_line,
577 const CommandLine& browser_command_line = *CommandLine::ForCurrentProcess();
  /external/chromium_org/content/common/
sandbox_win.cc 243 bool ShouldSetJobLevel(const CommandLine& cmd_line) {
359 bool use_winsta = !CommandLine::ForCurrentProcess()->HasSwitch(
376 bool ProcessDebugFlags(CommandLine* command_line, bool is_in_sandbox) {
378 const CommandLine& current_cmd_line = *CommandLine::ForCurrentProcess();
506 void SetJobLevel(const CommandLine& cmd_line,
571 CommandLine* cmd_line) {
572 const CommandLine& browser_command_line = *CommandLine::ForCurrentProcess();
  /external/chromium_org/chrome/browser/
browser_process_impl.cc 151 const CommandLine& command_line)
799 CommandLine::ForCurrentProcess(),
    [all...]
process_singleton_linux_unittest.cc 46 std::vector<CommandLine::StringVector> callback_command_lines_;
54 bool NotificationCallback(const CommandLine& command_line,
129 CommandLine command_line(CommandLine::ForCurrentProcess()->GetProgram());
149 CommandLine command_line(CommandLine::ForCurrentProcess()->GetProgram());
  /external/chromium_org/content/browser/gpu/
gpu_process_host.cc 176 explicit GpuSandboxedProcessLauncherDelegate(CommandLine* cmd_line)
273 CommandLine* cmd_line_;
286 if (CommandLine::ForCurrentProcess()->HasSwitch(switches::kSingleProcess) ||
287 CommandLine::ForCurrentProcess()->HasSwitch(switches::kInProcessGPU) ||
394 if (CommandLine::ForCurrentProcess()->HasSwitch(switches::kSingleProcess) ||
395 CommandLine::ForCurrentProcess()->HasSwitch(switches::kInProcessGPU)) {
435 bool disable_crash_limit = CommandLine::ForCurrentProcess()->HasSwitch(
576 CommandLine::ForCurrentProcess()->AppendSwitch(
690 if (!CommandLine::ForCurrentProcess()->HasSwitch(
    [all...]
  /external/chromium_org/chrome/browser/extensions/
crx_installer_browsertest.cc 196 CommandLine::ForCurrentProcess()->AppendSwitch(
237 CommandLine* command_line = CommandLine::ForCurrentProcess();
238 CommandLine old_command_line = *command_line;
246 *(CommandLine::ForCurrentProcess()) = old_command_line;
253 CommandLine::ForCurrentProcess()->AppendSwitch(
window_open_apitest.cc 49 CommandLine::ForCurrentProcess()->AppendSwitch(
233 virtual void SetUpCommandLine(CommandLine* command_line) OVERRIDE {
246 virtual void SetUpCommandLine(CommandLine* command_line) OVERRIDE {
278 if (CommandLine::ForCurrentProcess()->HasSwitch(switches::kAshBrowserTests))
285 if (CommandLine::ForCurrentProcess()->HasSwitch(switches::kEnablePanels)) {
331 if (!CommandLine::ForCurrentProcess()->HasSwitch(switches::kEnablePanels)) {
  /external/chromium_org/chrome/browser/ui/libgtk2ui/
select_file_dialog_impl_kde.cc 100 bool file_operation, bool multiple_selection, CommandLine* command_line);
158 CommandLine::StringVector cmd_vector;
161 CommandLine command_line(cmd_vector);
269 CommandLine::StringVector cmd_vector;
271 CommandLine command_line(cmd_vector);
298 CommandLine* command_line) {
  /external/chromium_org/chrome/installer/util/
master_preferences_unittest.cc 261 CommandLine cmd_line = CommandLine::FromString(cmd_str);
306 CommandLine chrome_install(CommandLine::FromString(chrome_cmd.str()));
321 CommandLine chrome_install(CommandLine::FromString(chrome_cmd.str()));
  /external/chromium_org/chrome/test/gpu/
gpu_feature_browsertest.cc 65 virtual void SetUpCommandLine(CommandLine* command_line) OVERRIDE {
231 virtual void SetUpCommandLine(CommandLine* command_line) OVERRIDE {
284 virtual void SetUpCommandLine(CommandLine* command_line) OVERRIDE {
355 virtual void SetUpCommandLine(CommandLine* command_line) OVERRIDE {
434 virtual void SetUpCommandLine(CommandLine* command_line) OVERRIDE {
463 virtual void SetUpCommandLine(CommandLine* command_line) OVERRIDE {
  /external/chromium_org/chrome/test/ppapi/
ppapi_test.cc 125 void PPAPITestBase::SetUpCommandLine(CommandLine* command_line) {
260 if (CommandLine::ForCurrentProcess()->HasSwitch(switches::kAshBrowserTests)) {
296 void PPAPITest::SetUpCommandLine(CommandLine* command_line) {
326 void OutOfProcessPPAPITest::SetUpCommandLine(CommandLine* command_line) {
332 void PPAPINaClTest::SetUpCommandLine(CommandLine* command_line) {
368 CommandLine* command_line) {
  /external/chromium_org/cloud_print/service/win/
chrome_launcher.cc 69 bool LaunchProcess(const CommandLine& cmdline,
96 CommandLine::ForCurrentProcess()->GetSwitchValueASCII(
170 CommandLine cmd = CommandLine::FromString(value.Value());
222 CommandLine cmd(chrome_path);
303 CommandLine cmd(chrome_path);
  /external/chromium_org/ui/shell_dialogs/gtk/
select_file_dialog_impl_kde.cc 105 bool file_operation, bool multiple_selection, CommandLine* command_line);
252 CommandLine::StringVector cmd_vector;
254 CommandLine command_line(cmd_vector);
277 CommandLine* command_line) {
469 CommandLine::StringVector cmd_vector;
472 CommandLine command_line(cmd_vector);
  /external/llvm/utils/KillTheDoctor/
KillTheDoctor.cpp 39 #include "llvm/Support/CommandLine.h"
313 std::string CommandLine(ProgramToRun);
318 errs() << ToolName << ": Failed to find program: '" << CommandLine
329 CommandLine.push_back(' ');
330 CommandLine.append(*i);
335 << ToolName << ": Command Line: " << CommandLine << '\n';
349 LPSTR(CommandLine.c_str()),
  /external/chromium/base/
process_util_unittest.cc 346 CommandLine cmd_line(python_runtime);
354 CommandLine other_cmd_line(python_runtime);
582 EXPECT_TRUE(base::GetAppOutput(CommandLine(FilePath("true")), &output));
585 EXPECT_FALSE(base::GetAppOutput(CommandLine(FilePath("false")), &output));
591 EXPECT_TRUE(base::GetAppOutput(CommandLine(argv), &output));
608 EXPECT_TRUE(base::GetAppOutputRestricted(CommandLine(argv), &output, 100));
613 EXPECT_FALSE(base::GetAppOutputRestricted(CommandLine(argv),
620 EXPECT_TRUE(base::GetAppOutputRestricted(CommandLine(argv), &output, 10));
625 EXPECT_TRUE(base::GetAppOutputRestricted(CommandLine(argv), &output, 5));
630 EXPECT_TRUE(base::GetAppOutputRestricted(CommandLine(argv), &output, 15))
    [all...]
  /external/chromium/chrome/browser/
browser_main_posix.cc 232 CommandLine* singleton_command_line = CommandLine::ForCurrentProcess();
intranet_redirect_detector.cc 70 const CommandLine* cmd_line = CommandLine::ForCurrentProcess();
  /external/chromium/chrome/browser/chromeos/login/
mock_authenticator.h 159 const CommandLine& base_command_line,
160 CommandLine* command_line) {
  /external/chromium/chrome/browser/extensions/
app_process_apitest.cc 65 CommandLine::ForCurrentProcess()->AppendSwitch(
149 CommandLine::ForCurrentProcess()->AppendSwitch(
  /external/chromium/chrome/browser/history/
in_memory_history_backend.cc 44 if (CommandLine::ForCurrentProcess()->HasSwitch(
46 !CommandLine::ForCurrentProcess()->HasSwitch(
  /external/chromium/chrome/browser/net/
chrome_net_log.cc 68 const CommandLine& command_line = *CommandLine::ForCurrentProcess();
  /external/chromium/chrome/browser/policy/
browser_policy_connector.cc 40 CommandLine* command_line = CommandLine::ForCurrentProcess();
cloud_policy_subsystem.cc 57 CommandLine* command_line = CommandLine::ForCurrentProcess();
  /external/chromium/chrome/browser/prefs/
pref_service_unittest.cc 221 CommandLine command_line(CommandLine::NO_PROGRAM);
261 CommandLine command_line(CommandLine::NO_PROGRAM);
295 CommandLine command_line(CommandLine::NO_PROGRAM);
324 CommandLine command_line(CommandLine::NO_PROGRAM);
  /external/chromium/chrome/browser/sync/
profile_sync_factory_impl_unittest.cc 30 command_line_.reset(new CommandLine(program_path));
88 scoped_ptr<CommandLine> command_line_;

Completed in 1374 milliseconds

<<31323334353637383940>>