Searched refs:thread_name (Results 1 - 25 of 33) sorted by relevance

12

/external/jemalloc/test/unit/
H A Dprof_thread_name.c25 mallctl_thread_name_set_impl(const char *thread_name, const char *func, argument
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
83 char thread_name[16] = ""; local
[all...]
/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);
H A Dthread_name.stderr.exp8 by 0x........: thread_func (thread_name.c:?)
17 by 0x........: thread_func (thread_name.c:?)
26 by 0x........: thread_func (thread_name.c:?)
35 by 0x........: thread_func (thread_name.c:?)
44 by 0x........: thread_func (thread_name.c:?)
53 by 0x........: thread_func (thread_name.c:?)
62 by 0x........: thread_func (thread_name.c:?)
71 by 0x........: thread_func (thread_name.c:?)
80 by 0x........: thread_func (thread_name.c:?)
89 by 0x........: thread_func (thread_name
[all...]
H A Dthread_name_xml.stderr.exp22 <exe>./thread_name</exe>
53 <file>thread_name.c</file>
89 <file>thread_name.c</file>
125 <file>thread_name.c</file>
161 <file>thread_name.c</file>
197 <file>thread_name.c</file>
233 <file>thread_name.c</file>
269 <file>thread_name.c</file>
305 <file>thread_name.c</file>
341 <file>thread_name
[all...]
/external/chromium-trace/catapult/devil/devil/utils/
H A Dtimeout_retry.py117 def _LogLastException(thread_name, attempt, max_attempts, log_func):
119 log_func('Exception on thread %s (attempt %d of %d)', thread_name,
158 thread_name = 'TimeoutThread-%d-for-%s' % (num_try,
161 name=thread_name)
180 _LogLastException(thread_name, num_try, retries + 1, error_log_func)
/external/webrtc/webrtc/modules/utility/include/
H A Dprocess_thread.h32 static rtc::scoped_ptr<ProcessThread> Create(const char* thread_name);
/external/webrtc/webrtc/base/
H A Dplatform_thread.h59 PlatformThread(ThreadRunFunction func, void* obj, const char* thread_name);
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
H A Dprocess_thread_impl.h28 explicit ProcessThreadImpl(const char* thread_name);
/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/compiler-rt/lib/tsan/rtl/
H A Dtsan_report.cc77 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/google-breakpad/src/client/mac/handler/
H A Dexception_handler.h99 mach_port_t thread_name);
193 mach_port_t thread_name,
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
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
/external/jemalloc/src/
H A Dprof.c130 static char *prof_thread_name_alloc(tsd_t *tsd, const char *thread_name);
1275 (tdata->thread_name != NULL) ? " " : "",
1276 (tdata->thread_name != NULL) ? tdata->thread_name : ""))
1724 char *thread_name, bool active)
1741 tdata->thread_name = thread_name;
1802 if (tdata->thread_name != NULL)
1803 idalloctm(tsd, tdata->thread_name, tcache, true, true);
1844 char *thread_name local
1723 prof_tdata_init_impl(tsd_t *tsd, uint64_t thr_uid, uint64_t thr_discrim, char *thread_name, bool active) argument
1954 prof_thread_name_alloc(tsd_t *tsd, const char *thread_name) argument
1975 prof_thread_name_set(tsd_t *tsd, const char *thread_name) argument
[all...]
/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));
/external/libchrome/base/threading/
H A Dthread.h172 const std::string& thread_name() const { return name_; } function in class:base::Thread
/external/libchrome/base/message_loop/
H A Dmessage_loop.h288 void set_thread_name(const std::string& thread_name) { argument
290 thread_name_ = thread_name;
292 const std::string& thread_name() const { return thread_name_; } function in class:base::MessageLoop
/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/libchrome/base/
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...]
H A Dtracked_objects.h230 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
H A Dtracked_objects.cc263 thread_name(birth.birth_thread()->thread_name()) {
657 thread_name()));
/external/valgrind/coregrind/
H A Dpub_core_threadstate.h403 HChar *thread_name; member in struct:__anon19710
/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);

Completed in 706 milliseconds

12