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

1 2

  /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...]
  /system/core/debuggerd/libdebuggerd/
backtrace.cpp 59 static void log_thread_name(log_t* log, pid_t tid, const char* thread_name) {
60 _LOG(log, logtype::BACKTRACE, "\n\"%s\" sysTid=%d\n", thread_name, tid);
64 const std::string& thread_name) {
65 log_thread_name(log, tid, thread_name.c_str());
87 const std::string& thread_name = it.second; local
89 dump_thread(&log, map, pid, thread_tid, thread_name.c_str());
104 char thread_name[16]; local
105 read_with_default("/proc/self/comm", thread_name, sizeof(thread_name), "<unknown>");
106 log_thread_name(&log, tid, thread_name);
    [all...]
tombstone.cpp 273 const char* thread_name) {
276 if (strcmp(thread_name, "logd") == 0 || strncmp(thread_name, "logd.", 4) == 0) {
280 _LOG(log, logtype::HEADER, "pid: %d, tid: %d, name: %s >>> %s <<<\n", pid, tid, thread_name,
501 const std::string& thread_name, BacktraceMap* map,
507 dump_thread_info(log, pid, tid, process_name.c_str(), thread_name.c_str());
680 const std::string& thread_name = it.second; local
683 dump_thread(log, pid, thread_tid, process_name, thread_name, map, 0, false);
773 char thread_name[16]; local
776 read_with_default("/proc/self/comm", thread_name, sizeof(thread_name), "<unknown>")
    [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/msm8909/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);
  /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 173 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]));
  /system/core/debuggerd/handler/
debuggerd_handler.cpp 149 char thread_name[MAX_TASK_NAME_LEN + 1]; // one more for termination local
150 if (prctl(PR_GET_NAME, reinterpret_cast<unsigned long>(thread_name), 0, 0, 0) != 0) {
151 strcpy(thread_name, "<name unknown>");
155 thread_name[MAX_TASK_NAME_LEN] = 0;
160 thread_name);
218 signal_name, code_desc, addr_desc, __gettid(), thread_name, __getpid(), main_thread_name);
  /system/core/libcutils/
sched_policy.cpp 368 char thread_name[255]; local
371 memset(thread_name, 0, sizeof(thread_name));
385 strncpy(thread_name, p, (q-p));
389 SLOGD("vvv tid %d (%s)", tid, thread_name);
395 SLOGD("^^^ tid %d (%s)", tid, thread_name);
398 SLOGD("/// tid %d (%s)", tid, thread_name);
401 SLOGD("RT tid %d (%s)", tid, thread_name);
404 SLOGD("??? tid %d (%s)", tid, thread_name);
  /art/test/912-classes/
classes.cc 304 std::string thread_name = GetThreadName(jenv, jni_env, thread); local
305 if (thread_name == "") {
308 if (thread_name_filter_ != "" && thread_name_filter_ != thread_name) {
315 thread_name.c_str()));
326 std::string thread_name = GetThreadName(jenv, jni_env, thread); local
327 if (thread_name == "") {
330 if (thread_name_filter_ != "" && thread_name_filter_ != thread_name) {
338 thread_name.c_str(),
  /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);
  /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...]
  /external/jemalloc/include/jemalloc/internal/
prof.h 189 char *thread_name; member in struct:prof_tdata_s
309 int prof_thread_name_set(tsd_t *tsd, const char *thread_name);

Completed in 407 milliseconds

1 2