HomeSort by relevance Sort by last modified time
    Searched defs:cmd_line (Results 26 - 50 of 68) sorted by null

12 3

  /external/chromium_org/media/filters/
ffmpeg_video_decoder.cc 47 const CommandLine* cmd_line = CommandLine::ForCurrentProcess(); local
48 std::string threads(cmd_line->GetSwitchValueASCII(switches::kVideoThreads));
vpx_video_decoder.cc 53 const CommandLine* cmd_line = CommandLine::ForCurrentProcess(); local
54 std::string threads(cmd_line->GetSwitchValueASCII(switches::kVideoThreads));
stream_parser_factory.cc 266 const CommandLine* cmd_line = CommandLine::ForCurrentProcess(); local
267 if (!cmd_line->HasSwitch(switches::kEnableEac3Playback))
  /external/chromium_org/sandbox/win/src/
process_policy_test.cc 47 const wchar_t *cmd_line = NULL; local
49 cmd_line = command.c_str();
54 if (::CreateProcessW(exe_name, const_cast<wchar_t*>(cmd_line), NULL, NULL,
76 if (cmd_line)
77 narrow_cmd_line = base::SysWideToMultiByte(cmd_line, CP_UTF8);
80 cmd_line ? const_cast<char*>(narrow_cmd_line.c_str()) : NULL,
127 // TEST 2: Try with the path in the cmd_line.
128 base::string16 cmd_line = L"\""; local
129 cmd_line += path;
130 cmd_line += L"\""
191 base::string16 cmd_line = L"\\""; local
206 base::string16 cmd_line = argv[0]; local
    [all...]
  /external/chromium_org/chrome/app/
client_util.cc 272 const CommandLine& cmd_line = *CommandLine::ForCurrentProcess(); local
273 process_type_ = cmd_line.GetSwitchValueASCII(switches::kProcessType);
  /external/chromium_org/chrome/browser/component_updater/
pepper_flash_component_installer.cc 507 CommandLine* cmd_line = CommandLine::ForCurrentProcess(); local
508 if (cmd_line->HasSwitch(switches::kDisableBundledPpapiFlash))
  /external/chromium_org/chrome/browser/
upgrade_detector_impl.cc 63 const CommandLine& cmd_line = *CommandLine::ForCurrentProcess(); local
64 return cmd_line.GetSwitchValueASCII(switches::kCheckForUpdateIntervalSec);
70 const CommandLine& cmd_line = *CommandLine::ForCurrentProcess(); local
71 return cmd_line.HasSwitch(switches::kSimulateOutdated) ||
72 cmd_line.HasSwitch(switches::kSimulateOutdatedNoAU);
77 const CommandLine& cmd_line = *CommandLine::ForCurrentProcess(); local
78 return cmd_line.HasSwitch(switches::kSimulateUpgrade) ||
79 cmd_line.HasSwitch(switches::kCheckForUpdateIntervalSec) ||
80 cmd_line.HasSwitch(switches::kSimulateCriticalUpdate) ||
  /external/chromium_org/chrome/installer/util/
installer_state_unittest.cc 78 CommandLine cmd_line = CommandLine::FromString(L"setup.exe"); local
79 MasterPreferences prefs(cmd_line);
82 installer_state->Initialize(cmd_line, prefs, machine_state);
251 CommandLine cmd_line = CommandLine::FromString( local
255 MasterPreferences prefs(cmd_line);
259 installer_state.Initialize(cmd_line, prefs, machine_state);
334 CommandLine cmd_line = CommandLine::FromString( local
338 MasterPreferences prefs(cmd_line);
342 installer_state.Initialize(cmd_line, prefs, machine_state);
388 CommandLine cmd_line = CommandLine::FromString(L"setup.exe --system-level") local
419 CommandLine cmd_line = CommandLine::FromString( local
    [all...]
master_preferences_unittest.cc 261 CommandLine cmd_line = CommandLine::FromString(cmd_str); local
262 installer::MasterPreferences prefs(cmd_line);
284 cmd_line.ParseFromString(cmd_str);
285 installer::MasterPreferences prefs2(cmd_line);
user_experiment.cc 108 // Launches setup.exe (located at |setup_path|) with |cmd_line|.
112 // |cmd_line| may be modified as a result of this call.
113 bool LaunchSetup(CommandLine* cmd_line, bool system_level_toast) {
118 cmd_line->AppendSwitch(switches::kVerboseLogging);
122 cmd_line->AppendSwitch(switches::kSystemLevel);
123 cmd_line->AppendSwitch(switches::kSystemLevelToast);
132 cmd_line->AppendSwitchASCII(key, toast_key);
138 return base::LaunchProcess(*cmd_line, options, NULL);
142 return base::LaunchProcess(*cmd_line, base::LaunchOptions(), NULL);
202 bool LaunchSetupAsConsoleUser(CommandLine* cmd_line) {
258 const CommandLine& cmd_line = *CommandLine::ForCurrentProcess(); local
    [all...]
  /external/chromium_org/chrome/test/chromedriver/
logging.cc 205 CommandLine* cmd_line = CommandLine::ForCurrentProcess(); local
206 if (cmd_line->HasSwitch("log-path")) {
208 base::FilePath log_path = cmd_line->GetSwitchValuePath("log-path");
219 if (cmd_line->HasSwitch("silent"))
222 if (cmd_line->HasSwitch("verbose"))
226 cmd_line->AppendSwitchASCII("vmodule", "*/chrome/test/chromedriver/*=3");
  /external/chromium_org/content/browser/
ppapi_plugin_process_host.cc 307 CommandLine* cmd_line = new CommandLine(exe_path); local
308 cmd_line->AppendSwitchASCII(switches::kProcessType,
311 cmd_line->AppendSwitchASCII(switches::kProcessChannelID, channel_id);
317 cmd_line->CopySwitchesFrom(browser_command_line, kCommonForwardSwitches,
329 cmd_line->CopySwitchesFrom(browser_command_line, kPluginForwardSwitches,
345 cmd_line->AppendSwitchASCII(switches::kPpapiFlashArgs, existing_args);
351 cmd_line->AppendSwitchASCII(switches::kLang, locale);
355 cmd_line->PrependWrapper(plugin_launcher);
363 cmd_line->AppendSwitchASCII(switches::kNoSandbox, std::string());
369 cmd_line);
    [all...]
  /external/chromium_org/content/common/gpu/media/
android_video_encode_accelerator.cc 89 const CommandLine* cmd_line = CommandLine::ForCurrentProcess(); local
90 if (cmd_line->HasSwitch(switches::kDisableWebRtcHWEncoding))
vaapi_h264_decoder_unittest.cc 360 CommandLine* cmd_line = CommandLine::ForCurrentProcess(); local
361 CHECK(cmd_line);
363 CommandLine::SwitchMap switches = cmd_line->GetSwitches();
v4l2_video_encode_accelerator.cc 288 const CommandLine* cmd_line = CommandLine::ForCurrentProcess(); local
289 if (cmd_line->HasSwitch(switches::kEnableWebRtcHWVp8Encoding)) {
    [all...]
  /external/chromium_org/content/renderer/media/webrtc/
peer_connection_dependency_factory.cc 317 const CommandLine* cmd_line = CommandLine::ForCurrentProcess(); local
320 if (!cmd_line->HasSwitch(switches::kDisableWebRtcHWDecoding)) {
325 if (!cmd_line->HasSwitch(switches::kDisableWebRtcHWEncoding)) {
349 cmd_line->HasSwitch(switches::kDisableWebRtcEncryption);
  /external/chromium_org/media/audio/
audio_manager_base.cc 388 const CommandLine* cmd_line = CommandLine::ForCurrentProcess(); local
390 std::string buffer_size_str(cmd_line->GetSwitchValueASCII(
  /external/chromium_org/media/audio/win/
audio_low_latency_output_win.cc 30 const CommandLine* cmd_line = CommandLine::ForCurrentProcess(); local
31 if (cmd_line->HasSwitch(switches::kEnableExclusiveAudio))
audio_manager_win.cc 420 const CommandLine* cmd_line = CommandLine::ForCurrentProcess(); local
429 if (cmd_line->HasSwitch(switches::kEnableExclusiveAudio)) {
467 (cmd_line->HasSwitch(switches::kTrySupportedChannelLayouts) ||
core_audio_util_win.cc 155 const CommandLine* cmd_line = CommandLine::ForCurrentProcess(); local
156 if (cmd_line->HasSwitch(switches::kForceWaveAudio)) {
194 const CommandLine* cmd_line = CommandLine::ForCurrentProcess(); local
195 if (cmd_line->HasSwitch(switches::kEnableExclusiveAudio))
    [all...]
  /external/chromium_org/media/video/capture/win/
video_capture_device_factory_win.cc 381 const CommandLine* cmd_line = CommandLine::ForCurrentProcess(); local
383 !cmd_line->HasSwitch(switches::kForceDirectShowVideoCapture)) ||
385 cmd_line->HasSwitch(switches::kForceMediaFoundationVideoCapture));
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/
driver.py 269 new_cmd_line = self.cmd_line(pixel_tests, per_test_args)
289 cmd_line = self.cmd_line(pixel_tests, per_test_args)
290 self._server_process = self._port._server_process_constructor(self._port, server_name, cmd_line, environment, logging=self._port.get_option("driver_logging"))
292 self._current_cmd_line = cmd_line
334 def cmd_line(self, pixel_tests, per_test_args): member in class:Driver
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/build/
RenderScriptLauncher.java 86 String cmd_line = sb.toString(); local
87 AdtPlugin.printToConsole(mProject, cmd_line);
  /external/chromium_org/chrome/installer/mini_installer/
mini_installer.cc 406 CommandString cmd_line; local
409 if (!GetSetupExePathFromRegistry(configuration, cmd_line.get(),
410 cmd_line.capacity()) ||
411 !cmd_line.append(kCmdUpdateSetupExe) ||
412 !cmd_line.append(L"=\"") ||
413 !cmd_line.append(setup_path->get()) ||
414 !cmd_line.append(L"\"") ||
415 !cmd_line.append(kCmdNewSetupExe) ||
416 !cmd_line.append(L"=\"") ||
417 !cmd_line.append(setup_dest_path.get()) |
494 CommandString cmd_line; local
    [all...]
  /external/chromium_org/components/breakpad/tools/
crash_service.cc 181 CommandLine& cmd_line = *CommandLine::ForCurrentProcess(); local
185 if (cmd_line.HasSwitch(kDumpsDir)) {
187 base::FilePath(cmd_line.GetSwitchValueNative(kDumpsDir));
191 if (cmd_line.HasSwitch(kMaxReports))
192 max_reports = _wtoi(cmd_line.GetSwitchValueNative(kMaxReports).c_str());
195 if (cmd_line.HasSwitch(kPipeName))
196 pipe_name = cmd_line.GetSwitchValueNative(kPipeName);
240 !cmd_line.HasSwitch(kNoWindow))) {
248 if (cmd_line.HasSwitch(kReporterTag))
249 reporter_tag_ = cmd_line.GetSwitchValueNative(kReporterTag)
    [all...]

Completed in 1490 milliseconds

12 3