Searched defs:command_line (Results 276 - 300 of 444) sorted by relevance

<<1112131415161718

/external/chromium_org/extensions/browser/
H A Dtest_extensions_browser_client.cc34 const base::CommandLine& command_line,
33 AreExtensionsDisabled( const base::CommandLine& command_line, BrowserContext* context) argument
/external/chromium_org/media/tools/player_x11/
H A Dplayer_x11.cc11 #include "base/command_line.h"
231 CommandLine* command_line = CommandLine::ForCurrentProcess(); local
232 std::string filename = command_line->GetSwitchValueASCII("file");
270 if (command_line->HasSwitch("use-gl")) {
279 CreateDataSource(filename), command_line->HasSwitch("streaming")));
287 paint_cb, command_line->HasSwitch("audio"));
/external/chromium_org/net/tools/disk_cache_memory_test/
H A Ddisk_cache_memory_test.cc14 #include "base/command_line.h"
271 const base::CommandLine& command_line = local
273 if (command_line.HasSwitch("help")) {
277 if ((command_line.GetSwitches().size() != 1 &&
278 command_line.GetSwitches().size() != 2) ||
279 !command_line.HasSwitch("spec-1") ||
280 (command_line.GetSwitches().size() == 2 &&
281 !command_line.HasSwitch("spec-2"))) {
286 const std::string spec_str_1 = command_line.GetSwitchValueASCII("spec-1");
289 if (command_line
[all...]
/external/chromium_org/remoting/host/
H A Ddaemon_process.cc12 #include "base/command_line.h"
262 const base::CommandLine* command_line = local
268 if (command_line->HasSwitch(kHostConfigSwitchName)) {
269 config_path = command_line->GetSwitchValuePath(kHostConfigSwitchName);
/external/chromium_org/remoting/host/setup/
H A Ddaemon_installer_win.cc296 base::string16 command_line = base::WideToUTF16( local
303 if (!base::LaunchProcess(command_line, options, &process_)) {
/external/chromium_org/remoting/host/win/
H A Dhost_service.cc17 #include "base/command_line.h"
68 bool HostService::InitWithCommandLine(const base::CommandLine* command_line) { argument
69 base::CommandLine::StringVector args = command_line->GetArgs();
77 command_line->HasSwitch(kConsoleSwitchName)) {
H A Dlaunch_process_with_token.cc290 const base::CommandLine::StringType& command_line,
304 LPWSTR command_line; member in struct:__anon9857::CreateProcessRequest
322 (application_name.size() + command_line.size() + desktop.size() + 3);
345 request->command_line = reinterpret_cast<LPWSTR>(buffer_offset);
346 std::copy(command_line.begin(),
347 command_line.end(),
349 buffer_offset += (command_line.size() + 1) * sizeof(wchar_t);
373 const base::CommandLine::StringType& command_line,
383 if (!SendCreateProcessRequest(pipe, application_name, command_line,
450 const base::CommandLine::StringType& command_line,
287 SendCreateProcessRequest( HANDLE pipe, const base::FilePath::StringType& application_name, const base::CommandLine::StringType& command_line, DWORD creation_flags, const base::char16* desktop_name) argument
370 CreateRemoteSessionProcess( uint32 session_id, const base::FilePath::StringType& application_name, const base::CommandLine::StringType& command_line, DWORD creation_flags, const base::char16* desktop_name, PROCESS_INFORMATION* process_information_out) argument
449 LaunchProcessWithToken(const base::FilePath& binary, const base::CommandLine::StringType& command_line, HANDLE user_token, SECURITY_ATTRIBUTES* process_attributes, SECURITY_ATTRIBUTES* thread_attributes, bool inherit_handles, DWORD creation_flags, const base::char16* desktop_name, ScopedHandle* process_out, ScopedHandle* thread_out) argument
[all...]
/external/chromium_org/sandbox/win/src/
H A Dprocess_thread_interception.cc263 LPCWSTR application_name, LPWSTR command_line,
270 if (orig_CreateProcessW(application_name, command_line, process_attributes,
306 command_line, cur_dir, proc_info, &answer);
322 LPCSTR application_name, LPSTR command_line,
329 if (orig_CreateProcessA(application_name, command_line, process_attributes,
354 if (command_line) {
355 cmd_unicode = AnsiToUnicode(command_line);
262 TargetCreateProcessW(CreateProcessWFunction orig_CreateProcessW, LPCWSTR application_name, LPWSTR command_line, LPSECURITY_ATTRIBUTES process_attributes, LPSECURITY_ATTRIBUTES thread_attributes, BOOL inherit_handles, DWORD flags, LPVOID environment, LPCWSTR current_directory, LPSTARTUPINFOW startup_info, LPPROCESS_INFORMATION process_information) argument
321 TargetCreateProcessA(CreateProcessAFunction orig_CreateProcessA, LPCSTR application_name, LPSTR command_line, LPSECURITY_ATTRIBUTES process_attributes, LPSECURITY_ATTRIBUTES thread_attributes, BOOL inherit_handles, DWORD flags, LPVOID environment, LPCSTR current_directory, LPSTARTUPINFOA startup_info, LPPROCESS_INFORMATION process_information) argument
H A Dprocess_thread_policy.cc221 const base::string16 &command_line,
231 cmd_line(_wcsdup(command_line.c_str()));
218 CreateProcessWAction(EvalResult eval_result, const ClientInfo& client_info, const base::string16 &app_name, const base::string16 &command_line, PROCESS_INFORMATION* process_info) argument
H A Drestricted_token_utils.cc143 DWORD StartRestrictedProcessInJob(wchar_t *command_line, argument
197 command_line,
H A Dtarget_process.cc112 const wchar_t* command_line,
119 scoped_ptr<wchar_t, base::FreeDeleter> cmd_line(_wcsdup(command_line));
111 Create(const wchar_t* exe_path, const wchar_t* command_line, bool inherit_handles, const base::win::StartupInformation& startup_info, base::win::ScopedProcessInformation* target_info) argument
/external/chromium_org/skia/ext/
H A Dimage_operations_bench.cc20 #include "base/command_line.h"
147 bool ParseArgs(const base::CommandLine* command_line);
179 bool Benchmark::ParseArgs(const base::CommandLine* command_line) { argument
180 const base::CommandLine::SwitchMap& switches = command_line->GetSwitches();
278 CommandLineAutoReset command_line(argc, argv);
280 if (!bench.ParseArgs(command_line.Get())) {
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/coverage/
H A Dcmdline.py370 def command_line(self, argv): member in class:CoverageScript
657 status = CoverageScript().command_line(argv)
/external/chromium_org/third_party/webrtc/base/
H A Dflags.cc271 LPTSTR command_line = ::GetCommandLine(); local
273 LPWSTR *wide_argv = ::CommandLineToArgvW(command_line, &argc_);
/external/chromium_org/tools/site_compare/commands/
H A Dcompare2.py16 import command_line namespace
89 raise command_line.ParseError("Browser filename must be an executable")
/external/chromium_org/tools/telemetry/telemetry/page/
H A Dpage_test.py5 from telemetry.core import command_line namespace
22 class PageTest(command_line.Command):
/external/chromium_org/tools/win/split_link/
H A Dsplit_link.cc56 std::wstring* command_line) {
60 command_line->append(argument);
62 command_line->push_back(L'"');
72 command_line->append(num_backslashes * 2, L'\\');
76 command_line->append(num_backslashes * 2 + 1, L'\\');
77 command_line->push_back(*it);
80 command_line->append(num_backslashes, L'\\');
81 command_line->push_back(*it);
84 command_line->push_back(L'"');
55 ArgvQuote(const std::wstring& argument, std::wstring* command_line) argument
/external/chromium_org/ui/aura/bench/
H A Dbench_main.cc11 #include "base/command_line.h"
161 CommandLine* command_line = CommandLine::ForCurrentProcess(); local
162 do_draw_ = !command_line->HasSwitch("disable-draw");
164 std::string webgl_size = command_line->GetSwitchValueASCII("webgl-size");
334 CommandLine* command_line = CommandLine::ForCurrentProcess(); local
335 bool force = command_line->HasSwitch("force-render-surface");
346 int frames = atoi(command_line->GetSwitchValueASCII("frames").c_str());
349 if (command_line->HasSwitch("bench-software-scroll")) {
/external/chromium_org/ui/compositor/
H A Dcompositor.cc11 #include "base/command_line.h"
92 CommandLine* command_line = CommandLine::ForCurrentProcess(); local
102 !command_line->HasSwitch(switches::kDisableGpuVsync);
105 !command_line->HasSwitch(cc::switches::kUIDisablePartialSwap);
113 command_line->HasSwitch(cc::switches::kUIShowCompositedLayerBorders);
115 command_line->HasSwitch(cc::switches::kUIShowFPSCounter);
117 command_line->HasSwitch(cc::switches::kUIShowLayerAnimationBounds);
119 command_line->HasSwitch(switches::kUIShowPaintRects);
121 command_line->HasSwitch(cc::switches::kUIShowPropertyChangedRects);
123 command_line
[all...]
/external/chromium_org/ui/gl/
H A Dgl_implementation_win.cc10 #include "base/command_line.h"
171 const CommandLine* command_line = CommandLine::ForCurrentProcess(); local
173 command_line->GetSwitchValueASCII(switches::kUseGL) == "swiftshader";
175 if (!command_line->HasSwitch(switches::kSwiftShaderPath))
178 command_line->GetSwitchValuePath(switches::kSwiftShaderPath);
/external/e2fsprogs/ext2ed/
H A Ddir_com.c175 void type_dir___cd (char *command_line) argument
225 ptr=parse_word (command_line,dir_name);
335 void type_dir___entry (char *command_line) argument
349 ptr=parse_word (command_line,buffer);
388 void type_dir___followinode (char *command_line) argument
410 void type_dir___inode (char *command_line) argument
424 void type_dir___show (char *command_line) argument
476 void type_dir___next (char *command_line) argument
488 ptr=parse_word (command_line,buffer);
499 void type_dir___prev (char *command_line) argument
537 type_dir___remember(char *command_line) argument
584 type_dir___set(char *command_line) argument
665 type_dir___writedata(char *command_line) argument
[all...]
H A Dfile_com.c50 void type_file___inode (char *command_line) argument
56 void type_file___show (char *command_line) argument
65 void type_file___nextblock (char *command_line) argument
71 ptr=parse_word (command_line,buffer);
93 void type_file___next (char *command_line) argument
99 ptr=parse_word (command_line,buffer);
116 void type_file___offset (char *command_line) argument
122 ptr=parse_word (command_line,buffer);
143 void type_file___prev (char *command_line) argument
149 ptr=parse_word (command_line,buffe
166 type_file___prevblock(char *command_line) argument
194 type_file___block(char *command_line) argument
225 type_file___display(char *command_line) argument
396 type_file___remember(char *command_line) argument
436 type_file___set(char *command_line) argument
499 type_file___writedata(char *command_line) argument
[all...]
H A Dgeneral_com.c24 void help (char *command_line) argument
32 ptr=parse_word (command_line,argument);
148 void set_device (char *command_line) argument
153 ptr=parse_word (command_line,new_device);
201 void set_offset (char *command_line) argument
213 ptr=parse_word (command_line,new_offset_buffer);
357 void set (char *command_line) argument
372 hex_set (command_line);
376 ptr=parse_word (command_line,buffer);
426 void hex_set (char *command_line) argument
491 set_type(char *command_line) argument
613 show(char *command_line) argument
692 next(char *command_line) argument
721 prev(char *command_line) argument
757 pgup(char *command_line) argument
764 redraw(char *command_line) argument
771 remember(char *command_line) argument
809 recall(char *command_line) argument
853 enable_write(char *command_line) argument
882 disable_write(char *command_line) argument
902 write_data(char *command_line) argument
[all...]
/external/linux-tools-perf/perf-3.12.0/tools/perf/util/scripting-engines/
H A Dtrace-event-perl.c402 const char **command_line; local
405 command_line = malloc((argc + 2) * sizeof(const char *));
406 command_line[0] = "";
407 command_line[1] = script;
409 command_line[i] = argv[i - 2];
414 if (perl_parse(my_perl, xs_init, argc + 2, (char **)command_line,
432 free(command_line);
436 free(command_line);
/external/chromium_org/base/
H A Dcommand_line.cc5 #include "base/command_line.h"
73 void AppendSwitchesAndArguments(CommandLine& command_line, argument
85 command_line.AppendSwitchNative(UTF16ToASCII(switch_string),
88 command_line.AppendSwitchNative(switch_string, switch_value);
91 command_line.AppendArgNative(arg);
227 CommandLine CommandLine::FromString(const std::wstring& command_line) { argument
229 cmd.ParseFromString(command_line);
425 void CommandLine::ParseFromString(const std::wstring& command_line) { argument
427 TrimWhitespace(command_line, TRIM_ALL, &command_line_string);
436 << UTF16ToUTF8(command_line);
[all...]

Completed in 468 milliseconds

<<1112131415161718