/system/extras/simpleperf/runtest/ |
D | runtest.py | 58 def __init__(self, name, comm, overhead, children_overhead): argument 60 self.comm = comm 73 self.name, self.comm, self.overhead, self.children_overhead)) 81 def __init__(self, symbol_name=None, comm=None, min_overhead=None, argument 84 self.comm = comm 93 if self.comm is not None: 94 strs.append('comm=%s' % self.comm) 105 if self.comm is not None: 106 if self.comm != symbol.comm: 122 def __init__(self, symbol_name, comm=None): argument [all …]
|
D | runtest.conf | 88 <symbol name="Function1()" comm="RUN_COMM1" min="30" max="70"/> 89 <symbol name="Function1()" comm="RUN_COMM2" min="30" max="70"/> 93 <symbol name="main" comm="RUN_COMM1" min="30" max="70"/> 94 <symbol name="main" comm="RUN_COMM2" min="30" max="70"/> 98 <symbol name="Function1()" comm="RUN_COMM1"> 101 <symbol name="Function1()" comm="RUN_COMM2"> 202 <symbol comm="RUN_COMM1" min="100" max="100"/>
|
/system/core/logd/ |
D | LogAudit.cpp | 315 const char* comm = strstr(str, comm_str); in logPrint() local 318 if (comm) { in logPrint() 319 estr = comm; in logPrint() 320 comm += sizeof(comm_str) - 1; in logPrint() 323 comm = "auditd"; in logPrint() 326 comm = commfree = logbuf->pidToName(pid); in logPrint() 328 if (!comm) { in logPrint() 329 comm = "unknown"; in logPrint() 333 const char* ecomm = strchr(comm, '"'); in logPrint() 336 l = ecomm - comm; in logPrint() [all …]
|
/system/extras/perfprofd/quipper/ |
D | perf_utils.cc | 131 offset = sizeof(event.comm) - sizeof(event.comm.comm) + in GetPerfSampleDataOffset() 132 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 | 1502 ByteSwap(&event_copy->comm.pid); in ReadPerfEventBlock() 1503 ByteSwap(&event_copy->comm.tid); in ReadPerfEventBlock()
|
/system/extras/simpleperf/ |
D | thread_tree.cpp | 48 void ThreadTree::SetThreadName(int pid, int tid, const std::string& comm) { in SetThreadName() argument 50 if (comm != thread->comm) { in SetThreadName() 52 std::unique_ptr<std::string>(new std::string(comm))); in SetThreadName() 53 thread->comm = thread_comm_storage_.back()->c_str(); in SetThreadName() 60 child->comm = parent->comm; in ForkThread() 306 SetThreadName(r.data->pid, r.data->tid, r.comm); in Update()
|
D | record_equal_test.h | 24 ASSERT_STREQ(r1.comm, r2.comm); in CheckCommRecordDataEqual()
|
D | thread_tree.h | 67 const char* comm; // It always refers to the latest comm. member 89 void SetThreadName(int pid, int tid, const std::string& comm);
|
D | event_attr.cpp | 84 attr.comm = 1; in CreateDefaultPerfEventAttr() 125 attr.mmap, attr.comm, attr.freq); in DumpPerfEventAttr()
|
D | environment.cpp | 221 static bool ReadThreadNameAndPid(pid_t tid, std::string* comm, pid_t* pid) { in ReadThreadNameAndPid() argument 226 if (comm != nullptr) { in ReadThreadNameAndPid() 227 *comm = procinfo.name; in ReadThreadNameAndPid()
|
D | record.cpp | 297 comm = p; in CommRecord() 304 const std::string& comm, uint64_t event_id, uint64_t time) { in CommRecord() argument 311 SetSize(header_size() + sizeof(data) + Align(comm.size() + 1, 8) + in CommRecord() 318 this->comm = p; in CommRecord() 319 strcpy(p, comm.c_str()); in CommRecord() 320 p += Align(comm.size() + 1, 8); in CommRecord() 327 comm); in DumpData()
|
D | perf_clock.cpp | 107 attr.comm = 0; in GetClockDiff()
|
D | record.h | 314 const char* comm; member 319 const std::string& comm, uint64_t event_id, uint64_t time);
|
D | sample_tree_test.cpp | 68 pid, tid, thread->comm, map->dso->Path(), map->start_addr))); in AddSample()
|
D | report_lib_interface.cpp | 222 current_sample_.thread_comm = current_thread_->comm; in GetCurrentSample()
|
D | README.md | 281 # grouping records using thread name(comm), process id(pid), thread id(tid), 283 …--dsos /data/app/com.example.sudogame-2/lib/arm64/libsudo-game-jni.so --sort comm,pid,tid,symbol -n 345 # Group records based on their thread id and thread comm: records having 347 $simpleperf report --sort tid,comm 353 # Default option: --sort comm,pid,tid,dso,symbol. Group records in the same 465 angler:/data/data/com.example.sudogame $./simpleperf report --sort pid,tid,comm
|
D | cmd_report.cpp | 84 thread_comm(thread->comm), in SampleEntry()
|
/system/extras/perfprofd/quipper/kernel-headers/tools/perf/util/ |
D | event.h | 51 char comm[16]; member 185 struct comm_event comm; member
|
/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/nfc/src/nfa/int/ |
D | nfa_hci_int.h | 284 tNFA_HCI_COMM_DATA comm; member
|
/system/core/logcat/tests/ |
D | logcat_test.cpp | 780 static const char comm[] = logcat_executable in TEST() local 783 char command[sizeof(buf) + sizeof(comm)]; in TEST() 784 snprintf(command, sizeof(command), comm, buf); in TEST()
|
/system/nfc/src/nfa/hci/ |
D | nfa_hci_act.c | 93 nfa_hci_cb.app_in_use = p_evt_data->comm.hci_handle; in nfa_hci_check_pending_api_requests() 143 nfa_hci_cb.app_in_use = p_evt_data->comm.hci_handle; in nfa_hci_check_api_requests() 467 tNFA_HANDLE app_handle = p_evt_data->comm.hci_handle; in nfa_hci_api_alloc_gate()
|