Home
last modified time | relevance | path

Searched refs:comm (Results 1 – 25 of 26) sorted by relevance

12

/system/extras/simpleperf/runtest/
Druntest.py56 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 …]
Druntest.conf87 <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/
DLogAudit.cpp189 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/
Dperf_utils.cc130 offset = sizeof(event.comm) - sizeof(event.comm.comm) + in GetPerfSampleDataOffset()
131 GetUint64AlignedStringLength(event.comm.comm); in GetPerfSampleDataOffset()
Dperf_parser.cc202 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()
Dperf_reader.cc1440 ByteSwap(&event_copy->comm.pid); in ReadPerfEventBlock()
1441 ByteSwap(&event_copy->comm.tid); in ReadPerfEventBlock()
/system/extras/simpleperf/
Drecord_equal_test.h24 ASSERT_EQ(r1.comm, r2.comm); in CheckCommRecordDataEqual()
Dthread_tree.cpp45 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()
Denvironment.cpp253 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()
Dthread_tree.h55 const char* comm; // It always refers to the latest comm. member
67 void AddThread(int pid, int tid, const std::string& comm);
Devent_attr.cpp84 attr.comm = 1; in CreateDefaultPerfEventAttr()
132 attr.mmap, attr.comm, attr.freq); in DumpPerfEventAttr()
Dsample_tree_test.cpp24 const char* comm; member
36 ASSERT_STREQ(expected.comm, sample.thread_comm); in SampleMatchExpectation()
Drecord.cpp260 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()
Denvironment.h45 std::string comm; member
Drecord.h212 std::string comm; member
364 const std::string& comm);
Dsample_tree.h63 thread_comm(thread->comm), in SampleEntry()
Dcmd_record.cpp583 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/
Devent.h51 char comm[16]; member
185 struct comm_event comm; member
/system/core/crash_reporter/
DTEST_WARNING12 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 …
Dcrash_reporter_logs.conf60 ps axw -o user,pid,%cpu,%mem,vsz,rss,tname,stat,start_time,bsdtime,comm | \
/system/extras/iotop/
Dtaskstats.h35 const std::string& comm() const { return comm_; } in comm() function
Diotop.cpp258 statistics.comm().c_str(), in main()
/system/extras/perfprofd/quipper/original-kernel-headers/tools/perf/util/
Devent.h36 char comm[16]; member
176 struct comm_event comm; member
/system/core/logcat/tests/
Dlogcat_test.cpp576 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/
Draw_commands_fixed.txt3628 a saved context. That is, TPM2_Shutdown() is not required after this comm and in order to reestabli…

12