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

1 2 3 45 6 7 8

  /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
415 pi->cmdline,
450 snprintf(filename, sizeof(filename), "/proc/%d/cmdline", pid);
  /external/dbus/dbus/
dbus-sysdeps-util-unix.c 1109 DBusString cmdline; local
1118 if (!_dbus_string_init (&cmdline))
1125 if (!_dbus_string_append_printf (&path, "/proc/%ld/cmdline", pid))
1139 if (!_dbus_read (fd, &cmdline, max_len))
1152 string_squash_nonprintable (&cmdline);
1154 if (!_dbus_string_copy (&cmdline, 0, str, _dbus_string_get_length (str)))
1157 _dbus_string_free (&cmdline);
1163 _dbus_string_free (&cmdline);
  /toolchain/binutils/binutils-2.25/gold/
gold.cc 177 const Command_line& cmdline,
181 if (cmdline.begin() == cmdline.end())
198 thread_count = cmdline.number_of_input_files();
211 && ibase->check_inputs(cmdline, layout->incremental_inputs()))
238 for (Command_line::const_iterator p = cmdline.begin();
239 p != cmdline.end();
  /external/google-breakpad/src/tools/linux/md2core/
minidump-2-core.cc 647 const char* cmdline = (const char*) range.data(); local
651 for (; i < range.length() && cmdline[i] && cmdline[i] != ' '; ++i) { }
653 fwrite(cmdline, i, 1, stderr);
656 if (!cmdline[j] || cmdline[j] == ' ') {
658 fwrite(cmdline + i, j - i, 1, stderr);
666 const char *binary_name = cmdline;
668 if (cmdline[i] == '/') {
669 binary_name = cmdline + i + 1
    [all...]
  /system/extras/simpleperf/
record_file_reader.cpp 209 std::vector<std::string> cmdline; local
217 cmdline.push_back(p);
220 return cmdline;
record_file.h 56 bool WriteCmdlineFeature(const std::vector<std::string>& cmdline);
cmd_dumprecord.cpp 144 {FEAT_CMDLINE, "cmdline"},
207 std::vector<std::string> cmdline = record_file_reader_->ReadCmdlineFeature(); local
208 PrintIndented(1, "cmdline: %s\n", android::base::Join(cmdline, ' ').c_str());
  /system/extras/tests/workloads/
pwrtest.sh 186 cmdline="$1"
187 echo Running $cmdline
188 (adb shell "cd $devdir && nohup $cmdline > test.out") &
  /system/extras/procrank/
procrank.c 188 char cmdline[256]; // this must be within the range of int local
335 printf("%s\n", "cmdline");
345 if (getprocname(procs[i]->pid, cmdline, (int)sizeof(cmdline)) < 0) {
392 printf("%s\n", cmdline);
483 * 1 on failure to create string to examine proc cmdline entry
484 * 2 on failure to open proc cmdline entry
485 * 3 on failure to read proc cmdline entry
497 if (asprintf(&filename, "/proc/%d/cmdline", pid) < 0) {
  /toolchain/binutils/binutils-2.25/ld/
ldfile.c 98 ldfile_add_library_path (const char *name, bfd_boolean cmdline)
102 if (!cmdline && config.only_cmd_line_lib_dirs)
107 new_dirs->cmdline = cmdline;
  /external/deqp/framework/common/
tcuCommandLine.cpp 98 de::cmdline::parseType(val.c_str(), &intVal);
103 void registerOptions (de::cmdline::Parser& parser)
105 using de::cmdline::Option;
106 using de::cmdline::NamedValue;
178 void registerLegacyOptions (de::cmdline::Parser& parser)
180 using de::cmdline::Option;
665 * \param cmdLine Full command line string.
667 CommandLine::CommandLine (const std::string& cmdLine)
671 if (!parse(cmdLine))
689 const de::cmdline::CommandLine& CommandLine::getCommandLine (void) cons
    [all...]
  /external/antlr/antlr-3.4/antlr-ant/main/antlr3-task/
antlr3.jar 
  /external/dnsmasq/contrib/dynamic-dnsmasq/
dynamic-dnsmasq.pl 239 if ( open(FILE,"</proc/$process/cmdline") ) {
240 my $cmdline = <FILE>;
242 if ( (split(/\0/,$cmdline))[0] =~ /dnsmasq/ ) {
  /external/google-breakpad/src/testing/gtest/test/
gtest_output_test.py 232 environ, cmdline = env_cmd
235 return NormalizeOutput(GetShellCommandOutput((environ, cmdline)))
  /external/vulkan-validation-layers/tests/gtest-1.7.0/test/
gtest_output_test.py 232 environ, cmdline = env_cmd
235 return NormalizeOutput(GetShellCommandOutput((environ, cmdline)))
  /prebuilts/go/darwin-x86/src/syscall/
mksyscall.pl 24 my $cmdline = "mksyscall.pl " . join(' ', @ARGV);
310 // $cmdline
mksyscall_solaris.pl 22 my $cmdline = "mksyscall_solaris.pl " . join(' ', @ARGV);
264 // $cmdline
  /prebuilts/go/linux-x86/src/syscall/
mksyscall.pl 24 my $cmdline = "mksyscall.pl " . join(' ', @ARGV);
310 // $cmdline
mksyscall_solaris.pl 22 my $cmdline = "mksyscall_solaris.pl " . join(' ', @ARGV);
264 // $cmdline
  /system/core/mkbootimg/
mkbootimg 63 args.output.write(pack('512s', args.cmdline[:512].encode()))
72 args.output.write(pack('1024s', args.cmdline[512:].encode()))
135 parser.add_argument('--cmdline', help='extra arguments to be passed on the '
  /system/tools/aidl/
generate_cpp_unittest.cpp 777 const char* cmdline[argc] = { local
780 return CppOptions::Parse(argc, cmdline);
  /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 198 char cmdline[32]; local
201 strcpy(cmdline, "unknown");
203 sprintf(proc_path, "/proc/%d/cmdline", pid);
206 int rc = read(fd, cmdline, sizeof(cmdline)-1);
207 cmdline[rc] = 0;
212 ALOGD("setProcessGroup: vvv pid %d (%s)", pid, cmdline);
214 ALOGD("setProcessGroup: ^^^ pid %d (%s)", pid, cmdline);
    [all...]

Completed in 1415 milliseconds

1 2 3 45 6 7 8