/system/extras/simpleperf/runtest/ |
D | runtest.py | 56 def __init__(self, name, comm, overhead, children_overhead): argument 58 self.comm = comm 71 self.name, self.comm, self.overhead, self.children_overhead)) 79 def __init__(self, symbol_name=None, comm=None, min_overhead=None, argument 82 self.comm = comm 91 if self.comm is not None: 92 strs.append('comm=%s' % self.comm) 103 if self.comm is not None: 104 if self.comm != symbol.comm: 120 def __init__(self, symbol_name, comm=None): argument [all …]
|
D | runtest.conf | 87 <symbol name="Function1()" comm="RUN_COMM1" min="30" max="70"/> 88 <symbol name="Function1()" comm="RUN_COMM2" min="30" max="70"/> 92 <symbol name="main" comm="RUN_COMM1" min="30" max="70"/> 93 <symbol name="main" comm="RUN_COMM2" min="30" max="70"/> 97 <symbol name="Function1()" comm="RUN_COMM1"> 100 <symbol name="Function1()" comm="RUN_COMM2"> 201 <symbol comm="RUN_COMM1" min="100" max="100"/>
|
/system/core/logd/ |
D | LogAudit.cpp | 189 const char *comm = strstr(str, comm_str); in logPrint() local 192 if (comm) { in logPrint() 193 estr = comm; in logPrint() 194 comm += sizeof(comm_str) - 1; in logPrint() 197 comm = "auditd"; in logPrint() 200 comm = commfree = logbuf->pidToName(pid); in logPrint() 202 if (!comm) { in logPrint() 203 comm = "unknown"; in logPrint() 207 const char *ecomm = strchr(comm, '"'); in logPrint() 210 l = ecomm - comm; in logPrint() [all …]
|
/system/extras/perfprofd/quipper/ |
D | perf_utils.cc | 130 offset = sizeof(event.comm) - sizeof(event.comm.comm) + in GetPerfSampleDataOffset() 131 GetUint64AlignedStringLength(event.comm.comm); in GetPerfSampleDataOffset()
|
D | perf_parser.cc | 202 VLOG(1) << "COMM: " << event.comm.pid << ":" << event.comm.tid << ": " in ProcessEvents() 203 << event.comm.comm; in ProcessEvents() 205 CHECK(MapCommEvent(event.comm)); in ProcessEvents() 206 commands_.insert(event.comm.comm); in ProcessEvents() 207 pidtid_to_comm_map_[std::make_pair(event.comm.pid, event.comm.tid)] = in ProcessEvents() 208 &(*commands_.find(event.comm.comm)); in ProcessEvents()
|
D | perf_reader.cc | 1440 ByteSwap(&event_copy->comm.pid); in ReadPerfEventBlock() 1441 ByteSwap(&event_copy->comm.tid); in ReadPerfEventBlock()
|
/system/extras/simpleperf/ |
D | record_equal_test.h | 24 ASSERT_EQ(r1.comm, r2.comm); in CheckCommRecordDataEqual()
|
D | thread_tree.cpp | 45 void ThreadTree::AddThread(int pid, int tid, const std::string& comm) { in AddThread() argument 57 thread_comm_storage_.push_back(std::unique_ptr<std::string>(new std::string(comm))); in AddThread() 58 it->second->comm = thread_comm_storage_.back()->c_str(); in AddThread() 64 child->comm = parent->comm; in ForkThread() 237 thread_tree->AddThread(r.data.pid, r.data.tid, r.comm); in BuildThreadTree()
|
D | environment.cpp | 253 static bool ReadThreadNameAndTgid(const std::string& status_file, std::string* comm, pid_t* tgid) { in ReadThreadNameAndTgid() argument 265 *comm = s; in ReadThreadNameAndTgid() 296 std::string comm; in GetThreadComm() local 299 if (!ReadThreadNameAndTgid(status_file, &comm, &tgid)) { in GetThreadComm() 306 thread.comm = comm; in GetThreadComm()
|
D | thread_tree.h | 55 const char* comm; // It always refers to the latest comm. member 67 void AddThread(int pid, int tid, const std::string& comm);
|
D | event_attr.cpp | 84 attr.comm = 1; in CreateDefaultPerfEventAttr() 132 attr.mmap, attr.comm, attr.freq); in DumpPerfEventAttr()
|
D | sample_tree_test.cpp | 24 const char* comm; member 36 ASSERT_STREQ(expected.comm, sample.thread_comm); in SampleMatchExpectation()
|
D | record.cpp | 260 comm = p; in CommRecord() 271 strcpy(p, comm.c_str()); in BinaryFormat() 272 p += ALIGN(comm.size() + 1, 8); in BinaryFormat() 278 PrintIndented(indent, "pid %u, tid %u, comm %s\n", data.pid, data.tid, comm.c_str()); in DumpData() 650 const std::string& comm) { in CreateCommRecord() argument 656 record.comm = comm; in CreateCommRecord() 659 ALIGN(record.comm.size() + 1, 8) + sample_id_size; in CreateCommRecord()
|
D | environment.h | 45 std::string comm; member
|
D | record.h | 212 std::string comm; member 364 const std::string& comm);
|
D | sample_tree.h | 63 thread_comm(thread->comm), in SampleEntry()
|
D | cmd_record.cpp | 583 CommRecord record = CreateCommRecord(*attr, thread.pid, thread.tid, thread.comm); in DumpThreadCommAndMmaps() 617 CommRecord comm_record = CreateCommRecord(*attr, thread.pid, thread.tid, thread.comm); in DumpThreadCommAndMmaps()
|
/system/extras/perfprofd/quipper/kernel-headers/tools/perf/util/ |
D | event.h | 51 char comm[16]; member 185 struct comm_event comm; member
|
/system/core/crash_reporter/ |
D | TEST_WARNING | 12 Apr 31 25:25:25 localhost kernel: [117959.231240] Pid: 10508, comm: X Tainted: G WC 3.4.0 … 26 Apr 31 25:25:25 localhost kernel: [117959.231588] Pid: 10508, comm: X Tainted: G WC 3.4.0 …
|
D | crash_reporter_logs.conf | 60 ps axw -o user,pid,%cpu,%mem,vsz,rss,tname,stat,start_time,bsdtime,comm | \
|
/system/extras/iotop/ |
D | taskstats.h | 35 const std::string& comm() const { return comm_; } in comm() function
|
D | iotop.cpp | 258 statistics.comm().c_str(), in main()
|
/system/extras/perfprofd/quipper/original-kernel-headers/tools/perf/util/ |
D | event.h | 36 char comm[16]; member 176 struct comm_event comm; member
|
/system/core/logcat/tests/ |
D | logcat_test.cpp | 576 static const char comm[] = "logcat -b radio -b events -b system -b main" in TEST() local 578 char command[sizeof(buf) + sizeof(comm)]; in TEST() 579 snprintf(command, sizeof(command), comm, buf); in TEST()
|
/system/tpm/trunks/generator/ |
D | raw_commands_fixed.txt | 3628 a saved context. That is, TPM2_Shutdown() is not required after this comm and in order to reestabli…
|