HomeSort by relevance Sort by last modified time
    Searched refs:cmdline (Results 101 - 125 of 193) sorted by null

1 2 3 45 6 7 8

  /external/gtest/test/
gtest_output_test.py 232 environ, cmdline = env_cmd
235 return NormalizeOutput(GetShellCommandOutput((environ, cmdline)))
  /ndk/sources/third_party/googletest/googletest/test/
gtest_output_test.py 232 environ, cmdline = env_cmd
235 return NormalizeOutput(GetShellCommandOutput((environ, cmdline)))
  /build/core/tasks/
factory_ramdisk.mk 83 RAMDISK_CMDLINE := --cmdline "$(BOARD_KERNEL_CMDLINE_FACTORY_BOOT)"
  /development/tools/yuv420sp2rgb/
cmdline.c 2 #include <cmdline.h>
  /external/fio/
profile.c 37 add_job_opts(ops->cmdline, FIO_CLIENT_TYPE_CLI);
  /external/fio/profiles/
tiobench.c 117 .cmdline = tb_opts,
  /system/extras/procrank/
procrank.c 130 char cmdline[256]; // this must be within the range of int local
253 printf("%s\n", "cmdline");
260 if (getprocname(procs[i]->pid, cmdline, (int)sizeof(cmdline)) < 0) {
294 printf("%s\n", cmdline);
366 * 1 on failure to create string to examine proc cmdline entry
367 * 2 on failure to open proc cmdline entry
368 * 3 on failure to read proc cmdline entry
380 if (asprintf(&filename, "/proc/%d/cmdline", pid) < 0) {
  /external/chromium_org/chrome/common/extensions/
chrome_extensions_client.cc 309 CommandLine* cmdline = CommandLine::ForCurrentProcess(); local
310 if (cmdline->HasSwitch(switches::kAppsGalleryUpdateURL))
311 return cmdline->GetSwitchValueASCII(switches::kAppsGalleryUpdateURL);
  /external/chromium_org/net/disk_cache/blockfile/
stress_cache.cc 59 base::CommandLine cmdline(exe);
60 cmdline.AppendArg(base::IntToString(iteration));
63 if (!base::LaunchProcess(cmdline, base::LaunchOptions(), &handle)) {
  /external/oprofile/gui/
oprof_start_util.cpp 269 string cmdline = cmd; local
272 cmdline += " " + *cit + " ";
274 error += "\n\nCommand was :\n\n" + cmdline + "\n";
  /external/deqp/executor/tools/
xeBatchResultToXml.cpp 60 void registerOptions (de::cmdline::Parser& parser)
62 using de::cmdline::Option;
63 using de::cmdline::NamedValue;
88 static bool parseCommandLine (CommandLine& cmdLine, int argc, const char* const* argv)
90 de::cmdline::Parser parser;
91 de::cmdline::CommandLine opts;
103 cmdLine.outputMode = opts.getOption<opt::OutMode>();
104 cmdLine.batchResultFile = opts.getArgs()[0];
105 cmdLine.outputPath = opts.getArgs()[1];
384 CommandLine cmdLine;
    [all...]
xeCommandLineExecutor.cpp 73 void registerOptions (de::cmdline::Parser& parser)
75 using de::cmdline::Option;
76 using de::cmdline::NamedValue;
96 << Option<CmdLineArgs> (DE_NULL, "cmdline", "Additional command line arguments for test binary", "");
125 static bool parseCommandLine (CommandLine& cmdLine, int argc, const char* const* argv)
127 de::cmdline::Parser parser;
128 de::cmdline::CommandLine opts;
141 cmdLine.serverBin = opts.getOption<opt::StartServer>();
142 cmdLine.host = opts.getOption<opt::Host>();
143 cmdLine.port = opts.getOption<opt::Port>()
    [all...]
  /packages/experimental/procstatlog/
procstatlog.c 242 char cmdline[4096]; local
243 sprintf(filename, "/proc/%d/cmdline", pid);
250 int len = read(fd, cmdline, sizeof(cmdline) - 1);
258 cmdline[len] = '\0';
260 for (n = 0; n < name_count && !strstr(cmdline, names[n]); ++n);
  /system/extras/ksmutils/
ksminfo.c 77 char cmdline[256]; // this must be within the range of int local
143 if (getprocname(*pids, cmdline, sizeof(cmdline)) < 0) {
144 cmdline[0] = '\0';
146 printf("%s (%u):\n", cmdline, *pids);
438 * 1 on failure to create string to examine proc cmdline entry
439 * 2 on failure to open proc cmdline entry
440 * 3 on failure to read proc cmdline entry
452 if (asprintf(&filename, "/proc/%d/cmdline", (int)pid) < 0) {
  /system/extras/librank/
librank.c 33 char cmdline[MAX_CMDLINE]; member in struct:process_info
169 getprocname(pid, process->cmdline, sizeof(process->cmdline));
199 char cmdline[256]; local
414 pi->cmdline,
449 sprintf(filename, "/proc/%d/cmdline", pid);
  /system/core/logcat/
logcat.cpp 562 static char cmdline[1024]; local
564 fd = open("/proc/cmdline", O_RDONLY);
566 int n = read(fd, cmdline, sizeof(cmdline)-1 );
568 cmdline[n] = 0;
571 cmdline[0] = 0;
574 logcat = strstr( cmdline, KERNEL_OPTION );
575 console = strstr( cmdline, CONSOLE_OPTION );
  /system/core/fastboot/
fastboot.c 62 void bootimg_set_cmdline(boot_img_hdr *h, const char *cmdline);
73 static const char *cmdline = 0; variable
316 " -c <cmdline> override kernel commandline\n"
329 const char *cmdline)
349 if(cmdline) bootimg_set_cmdline((boot_img_hdr*) kdata, cmdline);
385 if(cmdline) bootimg_set_cmdline((boot_img_hdr*) bdata, cmdline);
1015 cmdline = optarg;
    [all...]
  /external/chromium_org/ui/events/x/
touch_factory_x11.cc 43 CommandLine* cmdline = CommandLine::ForCurrentProcess(); local
44 touch_events_disabled_ = cmdline->HasSwitch(switches::kTouchEvents) &&
45 cmdline->GetSwitchValueASCII(switches::kTouchEvents) ==
  /external/deqp/modules/internal/
ditDelibsTests.cpp 127 addChild(new SelfCheckCase(m_testCtx, "commandline", "de::cmdline::selfTest()", de::cmdline::selfTest));
  /frameworks/native/cmds/dumpstate/
dumpstate.c 479 /* read /proc/cmdline before dropping root */
480 FILE *cmdline = fopen("/proc/cmdline", "r"); local
481 if (cmdline != NULL) {
482 fgets(cmdline_buf, sizeof(cmdline_buf), cmdline);
483 fclose(cmdline);
  /external/antlr/antlr-3.4/antlr-ant/main/antlr3-task/
antlr3.jar 
  /external/chromium_org/chrome/browser/diagnostics/
diagnostics_model.cc 231 DiagnosticsModel* MakeDiagnosticsModel(const CommandLine& cmdline) {
233 cmdline.GetSwitchValuePath(switches::kUserDataDir);
  /external/chromium_org/testing/gtest/test/
gtest_output_test.py 232 environ, cmdline = env_cmd
235 return NormalizeOutput(GetShellCommandOutput((environ, cmdline)))
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/
win.py 128 cmdline = self.path_from_chromium_base('third_party', 'perl', 'perl', 'bin', 'perl.exe') + ' -wT'
130 _winreg.SetValue(hkey, '', _winreg.REG_SZ, cmdline)
  /external/chromium_org/tools/site_compare/commands/
maskmaker.py 24 def CreateCommand(cmdline):
26 cmd = cmdline.AddCommand(

Completed in 504 milliseconds

1 2 3 45 6 7 8