Searched defs:cmdline (Results 26 - 50 of 68) sorted by relevance

123

/external/chromium_org/chrome/browser/component_updater/
H A Dchrome_component_updater_configurator.cc112 ChromeConfigurator(const CommandLine* cmdline,
153 const CommandLine* cmdline,
163 Tokenize(cmdline->GetSwitchValueASCII(switches::kComponentUpdater),
289 const base::CommandLine* cmdline,
291 return new ChromeConfigurator(cmdline, context_getter);
152 ChromeConfigurator( const CommandLine* cmdline, net::URLRequestContextGetter* url_request_getter) argument
288 MakeChromeComponentUpdaterConfigurator( const base::CommandLine* cmdline, net::URLRequestContextGetter* context_getter) argument
/external/chromium_org/cloud_print/service/win/
H A Dchrome_launcher.cc70 bool LaunchProcess(const CommandLine& cmdline, argument
80 cmdline.GetCommandLineString());
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/preprocs/cpp/
H A Dcpp-preproc.c99 char *cmdline, *p, *limit; local
103 cmdline = p = yasm_xmalloc(strlen(CPP_PROG)+CMDLINE_SIZE);
129 return cmdline;
136 char *cmdline; local
138 cmdline = cpp_build_cmdline(pp, NULL);
141 pp->f = popen(cmdline, "r");
148 yasm_xfree(cmdline);
168 char *cmdline; local
170 cmdline = cpp_build_cmdline(pp, "-M");
173 pp->f_deps = popen(cmdline, "
[all...]
/external/chromium_org/tools/android/heap_profiler/
H A Dheap_dump.c48 static void read_proc_cmdline(char* cmdline, int size);
62 char cmdline[512]; local
65 read_proc_cmdline(cmdline, sizeof(cmdline));
114 printf(" \"cmdline\": \"%s\",\n", cmdline);
272 static void read_proc_cmdline(char* cmdline, int size) { argument
274 snprintf(path, sizeof(path), "/proc/%d/cmdline", pid);
279 cmdline[0] = '\0';
282 int length = read_safe(cmdline_fd, cmdline, siz
[all...]
/external/chromium_org/tools/gn/
H A Dfunction_exec_script.cc45 bool ExecProcess(const CommandLine& cmdline, argument
86 base::FilePath::StringType cmdline_str(cmdline.GetCommandLineString());
142 bool ExecProcess(const CommandLine& cmdline, argument
149 std::vector<std::string> argv = cmdline.argv();
339 CommandLine cmdline(python_path);
340 cmdline.AppendArgPath(script_path);
350 cmdline.AppendArg(script_args.list_value()[i].string_value());
355 trace.SetCommandLine(cmdline);
360 base::UTF16ToUTF8(cmdline.GetCommandLineString()));
362 g_scheduler->Log("Pythoning", cmdline
[all...]
H A Dtrace.cc154 void ScopedTrace::SetCommandLine(const CommandLine& cmdline) { argument
156 item_->set_cmdline(FilePathToUTF8(cmdline.GetArgumentsString()));
298 if (!item.toolchain().empty() || !item.cmdline().empty()) {
307 if (!item.cmdline().empty()) {
309 base::EscapeJSONString(item.cmdline(), true, &quote_buffer);
312 out << "\"cmdline\":" << quote_buffer;
H A Dcommand_desc.cc105 const CommandLine* cmdline = CommandLine::ForCurrentProcess(); local
109 if (cmdline->HasSwitch("tree")) {
113 if (cmdline->HasSwitch("all")) {
126 if (cmdline->HasSwitch("all")) {
H A Dsetup.cc200 const CommandLine* cmdline = CommandLine::ForCurrentProcess(); local
201 if (cmdline->HasSwitch(kTimeSwitch))
203 if (cmdline->HasSwitch(kTracelogSwitch))
204 SaveTraces(cmdline->GetSwitchValuePath(kTracelogSwitch));
229 CommandLine* cmdline = CommandLine::ForCurrentProcess(); local
231 scheduler_.set_verbose_logging(cmdline->HasSwitch(kSwitchVerbose));
232 if (cmdline->HasSwitch(kTimeSwitch) ||
233 cmdline->HasSwitch(kTracelogSwitch))
238 if (!FillSourceDir(*cmdline))
242 if (!FillOtherConfig(*cmdline))
273 FillArguments(const CommandLine& cmdline) argument
391 FillSourceDir(const CommandLine& cmdline) argument
534 FillOtherConfig(const CommandLine& cmdline) argument
[all...]
/external/chromium_org/tools/win/link_limiter/
H A Dlimiter.cc66 tstring cmdline = tstring(GetCommandLine()); local
68 size_t first_space = cmdline.find(' ');
71 cmdline = exe_name;
73 cmdline = exe_name + cmdline.substr(first_space);
77 &cmdline[0],
87 cmdline.c_str(), ErrorMessageToString(GetLastError()).c_str());
/external/deqp/framework/delibs/decpp/
H A DdeCommandLine.cpp34 namespace cmdline namespace in namespace:de
582 } // cmdline
H A DdeCommandLine.hpp37 namespace cmdline namespace in namespace:de
151 // Generic implementation for cmdline.
426 } // cmdline
/external/linux-tools-perf/perf-3.12.0/tools/perf/util/
H A Dheader.h80 char *cmdline; member in struct:perf_session_env
/external/netperf/
H A Dnetserver.c659 char cmdline[80]; local
674 /* Build cmdline for child process */
675 strcpy(cmdline, program);
677 snprintf(&cmdline[strlen(cmdline)], sizeof(cmdline) - strlen(cmdline), " -v %d", verbosity);
680 snprintf(&cmdline[strlen(cmdline)], sizeof(cmdline)
[all...]
/external/qemu/distrib/sdl-1.2.15/src/main/win32/
H A DSDL_win32_main.c79 static int ParseCommandLine(char *cmdline, char **argv) argument
86 for ( bufp = cmdline; *bufp; ) {
334 char *cmdline; local
373 cmdline = SDL_stack_alloc(char, nLen);
374 if ( cmdline == NULL ) {
377 WideCharToMultiByte(CP_ACP, 0, bufp, -1, cmdline, nLen, NULL, NULL);
382 cmdline = SDL_stack_alloc(char, nLen);
383 if ( cmdline == NULL ) {
386 SDL_strlcpy(cmdline, bufp, nLen);
390 argc = ParseCommandLine(cmdline, NUL
[all...]
/external/chromium_org/base/process/
H A Dlaunch_posix.cc477 bool LaunchProcess(const CommandLine& cmdline, argument
480 return LaunchProcess(cmdline.argv(), options, process_handle);
/external/chromium_org/chrome/browser/safe_browsing/
H A Dsafe_browsing_service.cc426 CommandLine* cmdline = CommandLine::ForCurrentProcess(); local
428 cmdline->HasSwitch(switches::kSbDisableAutoUpdate) ||
429 cmdline->HasSwitch(switches::kDisableBackgroundNetworking);
/external/kernel-headers/original/uapi/asm-arm/asm/
H A Dsetup.h126 char cmdline[1]; /* this is the minimum size */ member in struct:tag_cmdline
157 struct tag_cmdline cmdline; member in union:tag::__anon22755
/external/qemu/distrib/sdl-1.2.15/src/main/macos/
H A DSDL_main.c80 static int ParseCommandLine(char *cmdline, char **argv) argument
86 for ( bufp = cmdline; *bufp; ) {
/external/chromium_org/chrome/browser/extensions/
H A Dinstall_verifier.cc85 const CommandLine* cmdline = CommandLine::ForCurrentProcess(); local
89 if (cmdline->HasSwitch(switches::kExtensionsInstallVerification)) {
90 std::string value = cmdline->GetSwitchValueASCII(
/external/chromium_org/chrome/installer/mini_installer/
H A Dmini_installer.cc277 bool RunProcessAndWait(const wchar_t* exe_path, wchar_t* cmdline, argument
281 if (!::CreateProcess(exe_path, cmdline, NULL, NULL, FALSE, CREATE_NO_WINDOW,
/external/e2fsprogs/lib/ext2fs/
H A Dtdbtool.c48 char cmdline[1024]; variable
/external/oprofile/pp/
H A Dopannotate.cpp46 string cmdline; member in namespace:__anon28469
94 out << in_comment << "Command line: " << cmdline << '\n'
861 cmdline += string(argv[i]) + " ";
/external/qemu/distrib/sdl-1.2.15/src/video/fbcon/
H A DSDL_fbevents.c381 int cmdline, len, arglen; local
399 SDL_snprintf(path, SDL_arraysize(path), "/proc/%d/cmdline", pid);
400 cmdline = open(path, O_RDONLY, 0);
401 if ( cmdline >= 0 ) {
402 len = read(cmdline, args, sizeof(args));
430 close(cmdline);
/external/qemu/distrib/sdl-1.2.15/src/video/ps2gs/
H A DSDL_gsevents.c354 int cmdline, len, arglen; local
367 SDL_snprintf(path, SDL_arraysize(path), "/proc/%d/cmdline", pid);
368 cmdline = open(path, O_RDONLY, 0);
369 if ( cmdline >= 0 ) {
370 len = read(cmdline, args, sizeof(args));
380 close(cmdline);
/external/chromium_org/base/
H A Dlogging.cc489 std::wstring cmdline = base::UTF8ToWide(str); local
490 if (cmdline.empty())
498 if (CreateProcessW(prog_name, &cmdline[0], NULL, NULL, false, 0, NULL,
505 MessageBoxW(NULL, &cmdline[0], L"Fatal error",

Completed in 759 milliseconds

123