HomeSort by relevance Sort by last modified time
    Searched refs:cmdline (Results 126 - 150 of 197) sorted by null

1 2 3 4 56 7 8

  /build/kati/
ninja.cc 80 size_t GetGomaccPosForAndroidCompileCommand(StringPiece cmdline) {
81 size_t index = cmdline.find(' ');
84 StringPiece cmd = cmdline.substr(0, index);
87 size_t pos = GetGomaccPosForAndroidCompileCommand(cmdline.substr(index));
99 StringPiece rest = cmdline.substr(index);
  /external/deqp/executor/tools/
xeCommandLineExecutor.cpp 86 void registerOptions (de::cmdline::Parser& parser)
88 using de::cmdline::Option;
89 using de::cmdline::NamedValue;
109 << Option<CmdLineArgs> (DE_NULL, "cmdline", "Additional command line arguments for the test binary.", "");
141 bool parseCommandLine (CommandLine& cmdLine, int argc, const char* const* argv)
143 de::cmdline::Parser parser;
144 de::cmdline::CommandLine opts;
176 cmdLine.runMode = RUNMODE_START_SERVER;
177 cmdLine.serverBinOrAddress = opts.getOption<opt::StartServer>();
181 cmdLine.runMode = RUNMODE_CONNECT
    [all...]
  /external/valgrind/coregrind/
vgdb.c 1082 char cmdline[100]; local
    [all...]
  /frameworks/base/core/jni/
android_util_Process.cpp 200 char cmdline[32]; local
203 strcpy(cmdline, "unknown");
205 sprintf(proc_path, "/proc/%d/cmdline", pid);
208 int rc = read(fd, cmdline, sizeof(cmdline)-1);
209 cmdline[rc] = 0;
214 ALOGD("setProcessGroup: vvv pid %d (%s)", pid, cmdline);
216 ALOGD("setProcessGroup: ^^^ pid %d (%s)", pid, cmdline);
    [all...]
  /system/core/logcat/
logcat.cpp 871 static char cmdline[1024]; local
873 fd = open("/proc/cmdline", O_RDONLY);
875 int n = read(fd, cmdline, sizeof(cmdline)-1 );
877 cmdline[n] = 0;
880 cmdline[0] = 0;
883 logcat = strstr( cmdline, KERNEL_OPTION );
884 console = strstr( cmdline, CONSOLE_OPTION );
    [all...]
  /system/core/fastboot/
fastboot.cpp 76 static const char* cmdline = nullptr; variable
377 " -c <cmdline> Override kernel commandline.\n"
422 const char* cmdline) {
437 if (cmdline) bootimg_set_cmdline((boot_img_hdr*) kdata, cmdline);
478 if (cmdline) bootimg_set_cmdline((boot_img_hdr*) bdata, cmdline);
    [all...]
  /system/core/init/
util.cpp 430 std::string cmdline; local
431 android::base::ReadFileToString("/proc/cmdline", &cmdline);
433 for (const auto& entry : android::base::Split(android::base::Trim(cmdline), " ")) {
  /external/autotest/site_utils/bootperf-bin/
bootperf 59 platform_BootPerfServer/sysinfo/cmdline
  /external/deqp/modules/internal/
ditDelibsTests.cpp 187 addChild(new SelfCheckCase(m_testCtx, "commandline", "de::cmdline::selfTest()", de::cmdline::selfTest));
  /external/valgrind/callgrind/
callgrind_control.in 37 $cmdline{$pid} = $cmd;
40 #print "Found PID $pid, cmd '$cmd{$pid}', cmdline '$cmdline{$pid}'.\n";
355 if ($pid >0) { print $pidstr.$cmdline{$pid}; }
  /system/extras/perfprofd/quipper/original-kernel-headers/tools/perf/util/
header.h 80 char *cmdline; member in struct:perf_session_env
  /toolchain/binutils/binutils-2.25/gold/
script.cc 3374 Command_line* cmdline = closure->command_line(); local
    [all...]
  /platform_testing/libraries/aupt-lib/src/android/support/test/aupt/
DataCollector.java 277 String cmdline = String.format("/system/bin/sh -c /system/bin/bugreport>%s", local
279 saveProcessOutput(cmdline, baos);
  /system/extras/simpleperf/
cmd_record.cpp 769 std::vector<std::string> cmdline; local
770 cmdline.push_back(exec_path);
771 cmdline.push_back("record");
772 cmdline.insert(cmdline.end(), args.begin(), args.end());
773 if (!record_file_writer_->WriteCmdlineFeature(cmdline)) {
  /external/autotest/cli/
job.py 392 self.parser.add_option('--kernel-cmdline', help='A string that will be'
393 ' given as cmdline to the booted kernel(s)'
439 def _get_kernel_data(kernel_list, cmdline):
440 # the RPC supports cmdline per kernel version in a dictionary
446 if cmdline:
447 kernel_info['cmdline'] = cmdline
  /external/v8/build/android/buildbot/
bb_device_status_check.py 49 ' '.join(p.cmdline))
56 ' '.join(p.cmdline))
  /art/build/
Android.executable.mk 58 LOCAL_C_INCLUDES += $(ART_C_INCLUDES) art/runtime art/cmdline $$(art_c_includes)
Android.gtest.mk 175 cmdline/cmdline_parser_test.cc \
410 LOCAL_C_INCLUDES := $(ART_C_INCLUDES) art/runtime art/cmdline art/compiler
427 LOCAL_C_INCLUDES := $(ART_C_INCLUDES) art/runtime art/cmdline art/compiler
574 LOCAL_C_INCLUDES += $$(ART_C_INCLUDES) art/runtime art/cmdline $$(art_gtest_extra_c_includes)
  /frameworks/native/cmds/dumpstate/
dumpstate.cpp 1298 FILE *cmdline = fopen("\/proc\/cmdline", "re"); local
    [all...]
  /external/autotest/client/bin/
job.py 107 @param extra_copy_cmdline: list of additional /proc/cmdline arguments to
313 Initialize default cmdline for booted kernels in this job.
319 # extract console= and other args from cmdline and add them into the
321 cmdline = utils.read_one_line('/proc/cmdline')
323 for karg in cmdline.split():
800 cmdline = utils.read_one_line("/proc/cmdline")
803 m = find_sum.match(cmdline)
825 logging.error(" Command Line: " + cmdline)
    [all...]
  /external/compiler-rt/lib/asan/scripts/
asan_symbolize.py 218 cmdline = ['atos', '-o', self.binary, '-arch', self.arch]
219 self.atos = UnbufferedLineConverter(cmdline, close_stderr=True)
  /external/libchrome/base/process/
launch_posix.cc 287 Process LaunchProcess(const CommandLine& cmdline,
289 return LaunchProcess(cmdline.argv(), options);
  /external/libxml2/
debugXML.c 2811 char *cmdline = NULL, *cur; local
    [all...]
  /development/tools/yuv420sp2rgb/
yuv420sp2rgb.c 3 #include <cmdline.h>
  /external/autotest/client/common_lib/hosts/
base_classes.py 400 return self.run('cat /proc/cmdline').stdout.rstrip()

Completed in 1930 milliseconds

1 2 3 4 56 7 8