HomeSort by relevance Sort by last modified time
    Searched defs:thread_name (Results 1 - 25 of 37) 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);
  /external/jemalloc/test/unit/
prof_thread_name.c 25 mallctl_thread_name_set_impl(const char *thread_name, const char *func,
29 assert_d_eq(mallctl("thread.prof.name", NULL, NULL, &thread_name,
30 sizeof(thread_name)), 0,
33 mallctl_thread_name_get_impl(thread_name, func, line);
40 const char *thread_name; local
48 thread_name = NULL;
49 assert_d_eq(mallctl("thread.prof.name", NULL, NULL, &thread_name,
50 sizeof(thread_name)), EFAULT,
52 thread_name);
55 thread_name = "hi\nthere"
83 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 106 char thread_name[64] = HWC_VSYNC_THREAD_NAME; local
107 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 96 char thread_name[64] = HWC_VSYNC_THREAD_NAME; local
97 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 115 char thread_name[64] = HWC_VSYNC_THREAD_NAME; local
116 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 115 char thread_name[64] = HWC_VSYNC_THREAD_NAME; local
116 prctl(PR_SET_NAME, (unsigned long) &thread_name, 0, 0, 0);
  /bionic/linker/
debugger.cpp 156 char thread_name[MAX_TASK_NAME_LEN + 1]; // one more for termination local
157 if (prctl(PR_GET_NAME, reinterpret_cast<unsigned long>(thread_name), 0, 0, 0) != 0) {
158 strcpy(thread_name, "<name unknown>");
162 thread_name[MAX_TASK_NAME_LEN] = 0;
180 signum, signal_name, code_desc, addr_desc, gettid(), thread_name);
  /external/libchrome/base/threading/
thread.h 172 const std::string& thread_name() const { return name_; } function in class:base::Thread
  /system/bt/osi/src/
thread.c 177 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
160 thread_name(thrbuf, mop->tid));
186 thread_name(thrbuf, loc->tid));
189 Printf(" Location is stack of %s.\n\n", thread_name(thrbuf, loc->tid));
191 Printf(" Location is TLS of %s.\n\n", thread_name(thrbuf, loc->tid));
194 loc->fd, thread_name(thrbuf, loc->tid));
238 thread_name(thrbuf, rt->parent_tid));
311 Printf("%s:\n", thread_name(thrbuf, rep->unique_tids[i]));
  /external/libchrome/base/message_loop/
message_loop.h 288 void set_thread_name(const std::string& thread_name) {
290 thread_name_ = thread_name;
292 const std::string& thread_name() const { return thread_name_; } function in class:base::MessageLoop
  /system/core/libcutils/
sched_policy.c 343 char thread_name[255]; local
347 memset(thread_name, 0, sizeof(thread_name));
361 strncpy(thread_name, p, (q-p));
365 SLOGD("vvv tid %d (%s)", tid, thread_name);
371 SLOGD("^^^ tid %d (%s)", tid, thread_name);
374 SLOGD("/// tid %d (%s)", tid, thread_name);
377 SLOGD("??? tid %d (%s)", tid, thread_name);
  /art/runtime/
instrumentation.cc 280 std::string thread_name; local
281 thread->GetThreadName(thread_name);
282 LOG(INFO) << "Installing exit stubs in " << thread_name;
389 std::string thread_name; local
390 thread->GetThreadName(thread_name);
391 LOG(INFO) << "Removing exit stubs in " << thread_name;
    [all...]
thread_list.cc 1262 std::string thread_name; local
    [all...]
  /art/runtime/jdwp/
jdwp_event.cc 792 std::string thread_name; local
793 JdwpError error = Dbg::GetThreadName(thread_id, &thread_name);
795 thread_name = "<unknown>";
797 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);
  /external/libchrome/base/
tracked_objects.h 230 std::string thread_name; member in struct:tracked_objects::BirthOnThreadSnapshot
514 const std::string& thread_name() const { return thread_name_; } function in class:tracked_objects::ThreadData
    [all...]
  /external/valgrind/coregrind/
pub_core_threadstate.h 403 HChar *thread_name; member in struct:__anon25353

Completed in 691 milliseconds

1 2