Searched defs:thread_name (Results 1 - 19 of 19) sorted by path

/external/compiler-rt/lib/tsan/rtl/
H A Dtsan_report.cc77 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/google-breakpad/src/client/mac/handler/
H A Dexception_handler.cc354 mach_port_t thread_name,
364 thread_name) ) {
379 thread_name);
402 exception_subcode, thread_name);
349 WriteMinidumpWithException( int exception_type, int exception_code, int exception_subcode, breakpad_ucontext_t* task_context, mach_port_t thread_name, bool exit_after_write, bool report_current_thread) argument
H A Dminidump_generator.h101 mach_port_t thread_name) {
105 exception_thread_ = thread_name;
100 SetExceptionInformation(int type, int code, int subcode, mach_port_t thread_name) argument
/external/jemalloc/include/jemalloc/internal/
H A Dprof.h189 char *thread_name; member in struct:prof_tdata_s
309 int prof_thread_name_set(tsd_t *tsd, const char *thread_name);
/external/jemalloc/src/
H A Dprof.c130 static char *prof_thread_name_alloc(tsdn_t *tsdn, const char *thread_name);
1308 (tdata->thread_name != NULL) ? " " : "",
1309 (tdata->thread_name != NULL) ? tdata->thread_name : ""))
1794 char *thread_name, bool active)
1810 tdata->thread_name = thread_name;
1878 if (tdata->thread_name != NULL)
1879 idalloctm(tsd_tsdn(tsd), tdata->thread_name, NULL, true, true);
1921 char *thread_name local
1793 prof_tdata_init_impl(tsd_t *tsd, uint64_t thr_uid, uint64_t thr_discrim, char *thread_name, bool active) argument
2030 prof_thread_name_alloc(tsdn_t *tsdn, const char *thread_name) argument
2051 prof_thread_name_set(tsd_t *tsd, const char *thread_name) argument
[all...]
/external/jemalloc/test/unit/
H A Dprof_thread_name.c26 mallctl_thread_name_set_impl(const char *thread_name, const char *func, argument
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
85 char thread_name[16] = ""; local
[all...]
/external/libchrome/base/message_loop/
H A Dmessage_loop.cc582 std::string thread_name = GetThreadName(); local
583 DCHECK(!thread_name.empty());
585 "MsgLoop:" + thread_name, kLeastNonZeroMessageId, kMaxMessageId,
/external/libchrome/base/threading/
H A Dthread.h173 const std::string& thread_name() const { return name_; } function in class:base::Thread
/external/libchrome/base/
H A Dtracked_objects.h229 std::string thread_name; member in struct:tracked_objects::BirthOnThreadSnapshot
513 const std::string& thread_name() const { return thread_name_; } function in class:tracked_objects::ThreadData
H A Dtracked_objects_unittest.cc50 // Simulate a birth on the thread named |thread_name|, at the given
52 void TallyABirth(const Location& location, const std::string& thread_name) { argument
53 // If the |thread_name| is empty, we don't initialize system with a thread
55 if (!thread_name.empty())
88 EXPECT_EQ(birth_thread, process_data_phase.tasks[0].birth.thread_name);
226 EXPECT_EQ(kWorkerThreadName, process_data_phase.tasks[0].birth.thread_name);
534 EXPECT_EQ(kMainThreadName, process_data_phase0.tasks[0].birth.thread_name);
558 EXPECT_EQ(kMainThreadName, process_data_phase1.tasks[0].birth.thread_name);
651 EXPECT_EQ(kMainThreadName, process_data_phase0.tasks[0].birth.thread_name);
675 EXPECT_EQ(kMainThreadName, process_data_phase1.tasks[0].birth.thread_name);
[all...]
/external/libmicrohttpd/src/include/
H A Dw32functions.h199 static void W32_SetThreadName(const DWORD thread_id, const char *thread_name) argument
205 * @param thread_name name to set
207 void W32_SetThreadName(const DWORD thread_id, const char *thread_name);
/external/libmicrohttpd/src/platform/
H A Dw32functions.c674 * @param thread_name name to set
676 void W32_SetThreadName(const DWORD thread_id, const char *thread_name) argument
689 if (NULL == thread_name)
693 thread_info.name = thread_name;
/external/libmojo/base/android/
H A Djni_android.cc51 JNIEnv* AttachCurrentThreadWithName(const std::string& thread_name) { argument
55 args.name = thread_name.c_str();
/external/mesa3d/src/gallium/drivers/llvmpipe/
H A Dlp_rast.c789 char thread_name[16]; local
792 util_snprintf(thread_name, sizeof thread_name, "llvmpipe-%u", task->thread_index);
793 pipe_thread_setname(thread_name);
/external/valgrind/coregrind/
H A Dpub_core_threadstate.h409 HChar *thread_name; member in struct:__anon24850
/external/valgrind/drd/tests/
H A Dthread_name.c23 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/webrtc/webrtc/base/
H A Dplatform_thread.cc96 const char* thread_name)
99 name_(thread_name ? thread_name : "webrtc"),
94 PlatformThread(ThreadRunFunction func, void* obj, const char* thread_name) argument
/external/webrtc/webrtc/modules/utility/source/
H A Dprocess_thread_impl.cc40 const char* thread_name) {
41 return rtc::scoped_ptr<ProcessThread>(new ProcessThreadImpl(thread_name));
44 ProcessThreadImpl::ProcessThreadImpl(const char* thread_name) argument
47 thread_name_(thread_name) {}
39 Create( const char* thread_name) argument
/external/webrtc/webrtc/system_wrappers/source/
H A Devent_timer_posix.cc156 const char* thread_name = "WebRtc_event_timer_thread"; local
157 timer_thread_.reset(new rtc::PlatformThread(Run, this, thread_name));

Completed in 583 milliseconds