HomeSort by relevance Sort by last modified time
    Searched defs:thread_name (Results 1 - 25 of 43) sorted by null

1 2

  /system/core/debuggerd/libdebuggerd/include/libdebuggerd/
types.h 27 std::string thread_name; member in struct:ThreadInfo
  /external/libxcam/xcore/
xcam_thread.cpp 104 char thread_name[16]; local
105 xcam_mem_clear (thread_name);
106 snprintf (thread_name, sizeof (thread_name), "xc:%s", XCAM_STR(_name));
107 int ret = pthread_setname_np (_thread_id, thread_name);
  /external/valgrind/drd/tests/
thread_name.c 23 char thread_name[32]; local
25 snprintf(thread_name, sizeof(thread_name),
27 ANNOTATE_THREAD_NAME(thread_name);
36 fprintf(stderr, "\n%s\n\n", thread_name);
  /art/runtime/
monitor_android.cc 62 std::string thread_name; local
63 self->GetThreadName(thread_name);
64 ctx << thread_name; local
  /external/jemalloc/test/unit/
prof_thread_name.c 26 mallctl_thread_name_set_impl(const char *thread_name, const char *func,
31 (void *)&thread_name, sizeof(thread_name)), 0,
34 mallctl_thread_name_get_impl(thread_name, func, line);
41 const char *thread_name; local
49 thread_name = NULL;
51 (void *)&thread_name, sizeof(thread_name)), EFAULT,
53 thread_name);
56 thread_name = "hi\nthere"
85 char thread_name[16] = ""; local
    [all...]
  /external/webrtc/webrtc/system_wrappers/source/
event_timer_posix.cc 156 const char* thread_name = "WebRtc_event_timer_thread"; local
157 timer_thread_.reset(new rtc::PlatformThread(Run, this, thread_name));
  /hardware/qcom/display/msm8084/libhwcomposer/
hwc_uevents.cpp 317 char thread_name[64] = HWC_UEVENT_THREAD_NAME; local
318 prctl(PR_SET_NAME, (unsigned long) &thread_name, 0, 0, 0);
hwc_vsync.cpp 105 char thread_name[64] = HWC_VSYNC_THREAD_NAME; local
106 prctl(PR_SET_NAME, (unsigned long) &thread_name, 0, 0, 0);
  /hardware/qcom/display/msm8226/libhwcomposer/
hwc_uevents.cpp 324 char thread_name[64] = HWC_UEVENT_THREAD_NAME; local
325 prctl(PR_SET_NAME, (unsigned long) &thread_name, 0, 0, 0);
hwc_vsync.cpp 95 char thread_name[64] = HWC_VSYNC_THREAD_NAME; local
96 prctl(PR_SET_NAME, (unsigned long) &thread_name, 0, 0, 0);
  /hardware/qcom/display/msm8960/libhwcomposer/
hwc_uevents.cpp 182 char thread_name[64] = HWC_UEVENT_THREAD_NAME; local
183 prctl(PR_SET_NAME, (unsigned long) &thread_name, 0, 0, 0);
hwc_vsync.cpp 57 char thread_name[64] = HWC_VSYNC_THREAD_NAME; local
58 prctl(PR_SET_NAME, (unsigned long) &thread_name, 0, 0, 0);
  /hardware/qcom/display/msm8994/libhwcomposer/
hwc_uevents.cpp 214 char thread_name[64] = HWC_UEVENT_THREAD_NAME; local
215 prctl(PR_SET_NAME, (unsigned long) &thread_name, 0, 0, 0);
hwc_vsync.cpp 114 char thread_name[64] = HWC_VSYNC_THREAD_NAME; local
115 prctl(PR_SET_NAME, (unsigned long) &thread_name, 0, 0, 0);
  /external/libchrome/base/threading/
thread.h 234 const std::string& thread_name() const { return name_; } function in class:base::Thread
  /system/bt/osi/src/
thread.cc 189 const char* thread_name(const thread_t* thread) { function
  /external/compiler-rt/lib/tsan/rtl/
tsan_report.cc 77 const char *thread_name(char *buf, int tid) { function in namespace:__tsan
162 thread_name(thrbuf, mop->tid));
188 thread_name(thrbuf, loc->tid));
191 Printf(" Location is stack of %s.\n\n", thread_name(thrbuf, loc->tid));
193 Printf(" Location is TLS of %s.\n\n", thread_name(thrbuf, loc->tid));
196 loc->fd, thread_name(thrbuf, loc->tid));
240 thread_name(thrbuf, rt->parent_tid));
313 Printf("%s:\n", thread_name(thrbuf, rep->unique_tids[i]));
  /external/perfetto/src/ftrace_reader/
cpu_reader.cc 178 char thread_name[16]; local
179 snprintf(thread_name, sizeof(thread_name), "traced_probes%zu", cpu);
180 pthread_setname_np(pthread_self(), thread_name); local
  /system/core/libcutils/
sched_policy.cpp 373 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);
  /external/mesa3d/src/gallium/drivers/llvmpipe/
lp_rast.c 789 char thread_name[16]; local
792 util_snprintf(thread_name, sizeof thread_name, "llvmpipe-%u", task->thread_index);
793 pipe_thread_setname(thread_name);
  /system/core/debuggerd/handler/
debuggerd_handler.cpp 157 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/
tombstone.cpp 122 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/
cmd_report_sample.cpp 333 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);
  /art/runtime/jdwp/
jdwp_event.cc 834 std::string thread_name; local
835 JdwpError error = Dbg::GetThreadName(thread_id, &thread_name);
837 thread_name = "<unknown>";
839 VLOG(jdwp) << StringPrintf(" thread=%#" PRIx64, thread_id) << " " << thread_name;
    [all...]
  /art/test/912-classes/
classes.cc 305 std::string thread_name = GetThreadName(jenv, jni_env, thread); local
306 if (thread_name == "") {
309 if (thread_name_filter_ != "" && thread_name_filter_ != thread_name) {
316 thread_name.c_str()));
327 std::string thread_name = GetThreadName(jenv, jni_env, thread); local
328 if (thread_name == "") {
331 if (thread_name_filter_ != "" && thread_name_filter_ != thread_name) {
339 thread_name.c_str(),
391 ScopedLocalRef<jobject> thread_name(env, env->NewStringUTF(name_str.c_str()));
392 CHECK(thread_name.get() != nullptr)
    [all...]

Completed in 2505 milliseconds

1 2