Searched refs:thread_name (Results 1 - 13 of 13) sorted by relevance

/system/core/debuggerd/libdebuggerd/include/libdebuggerd/
H A Dtypes.h27 std::string thread_name; member in struct:ThreadInfo
/system/bt/osi/test/
H A Dthread_test.cc26 ASSERT_STREQ(thread_name(thread), "test_name");
32 ASSERT_STREQ("0123456789abcdef", thread_name(thread));
38 ASSERT_STREQ("0123456789abcdef", thread_name(thread));
/system/bt/osi/include/
H A Dthread.h58 // Requests |thread| to stop. Only |thread_free| and |thread_name| may be called
84 const char* thread_name(const thread_t* thread);
/system/core/libcutils/
H A Dsched_policy.cpp373 char thread_name[255]; local
376 memset(thread_name, 0, sizeof(thread_name));
390 strncpy(thread_name, p, (q-p));
394 SLOGD("vvv tid %d (%s)", tid, thread_name);
400 SLOGD("^^^ tid %d (%s)", tid, thread_name);
403 SLOGD("/// tid %d (%s)", tid, thread_name);
406 SLOGD("RT tid %d (%s)", tid, thread_name);
409 SLOGD("??? tid %d (%s)", tid, thread_name);
/system/core/debuggerd/handler/
H A Ddebuggerd_handler.cpp157 char thread_name[MAX_TASK_NAME_LEN + 1]; // one more for termination local
158 if (prctl(PR_GET_NAME, reinterpret_cast<unsigned long>(thread_name), 0, 0, 0) != 0) {
159 strcpy(thread_name, "<name unknown>");
163 thread_name[MAX_TASK_NAME_LEN] = 0;
168 thread_name);
189 addr_desc, __gettid(), thread_name, __getpid(), main_thread_name);
H A Ddebuggerd_fallback.cpp80 thread.thread_name = get_thread_name(gettid());
/system/core/debuggerd/libdebuggerd/
H A Dtombstone.cpp122 if (thread_info.thread_name == "logd" ||
123 android::base::StartsWith(thread_info.thread_name, "logd.")) {
128 thread_info.tid, thread_info.thread_name.c_str(), thread_info.process_name.c_str());
598 char thread_name[16]; local
601 read_with_default("/proc/self/comm", thread_name, sizeof(thread_name), "<unknown>");
610 .thread_name = thread_name,
H A Dbacktrace.cpp67 _LOG(&log, logtype::BACKTRACE, "\n\"%s\" sysTid=%d\n", thread.thread_name.c_str(), thread.tid);
/system/extras/simpleperf/
H A Dcmd_report_sample.cpp333 FprintIndented(report_fp_, 1, "thread_name: %s\n", thread.thread_name().c_str());
610 const char* thread_name = thread_tree_.FindThreadOrNew(r.tid_data.pid, r.tid_data.tid)->comm; local
611 FprintIndented(report_fp_, 1, "thread_name: %s\n", thread_name);
/system/core/debuggerd/
H A Dcrash_dump.cpp422 info.thread_name = get_thread_name(thread);
551 if (thread_info[target_process].thread_name != "system_server") {
/system/bt/osi/src/
H A Dthread.cc189 const char* thread_name(const thread_t* thread) { function
/system/extras/simpleperf/scripts/
H A Dreport_html.py96 def get_thread(self, tid, thread_name):
100 thread.name = thread_name
102 self.name = thread_name
/system/bt/btif/src/
H A Dbtif_a2dp_source.cc167 BtWorkerThread(const std::string& thread_name) argument
168 : thread_name_(thread_name),

Completed in 209 milliseconds