Searched defs:thread_name (Results 1 - 7 of 7) sorted by relevance

/system/core/debuggerd/libdebuggerd/include/libdebuggerd/
H A Dtypes.h27 std::string thread_name; member in struct:ThreadInfo
/system/bt/osi/src/
H A Dthread.cc189 const char* thread_name(const thread_t* thread) { function
/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);
/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,
/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/bt/btif/src/
H A Dbtif_a2dp_source.cc167 BtWorkerThread(const std::string& thread_name) argument
168 : thread_name_(thread_name),

Completed in 169 milliseconds