Home
last modified time | relevance | path

Searched refs:thread_name (Results 1 – 17 of 17) sorted by relevance

/external/valgrind/main/drd/tests/
Dthread_name.c22 char thread_name[32]; in thread_func() local
24 snprintf(thread_name, sizeof(thread_name), in thread_func()
26 ANNOTATE_THREAD_NAME(thread_name); in thread_func()
33 fprintf(stderr, "\n%s\n\n", thread_name); in thread_func()
Dthread_name.vgtest1 prereq: test -e thread_name && ./supported_libpthread
3 prog: thread_name
DMakefile.am255 thread_name.stderr.exp \
256 thread_name.vgtest \
298 thread_name \ program
DMakefile.in66 sem_open$(EXEEXT) sigalrm$(EXEEXT) thread_name$(EXEEXT) \
354 thread_name_SOURCES = thread_name.c
355 thread_name_OBJECTS = thread_name.$(OBJEXT)
410 sem_as_mutex.c sem_open.c sigalrm.c thread_name.c trylock.c \
432 thread_name.c trylock.c $(tsan_unittest_SOURCES) unit_bitmap.c \
969 thread_name.stderr.exp \
970 thread_name.vgtest \
1213 thread_name$(EXEEXT): $(thread_name_OBJECTS) $(thread_name_DEPENDENCIES)
1214 @rm -f thread_name$(EXEEXT)
1287 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/thread_name.Po@am__quote@
/external/chromium/chrome/browser/
Djankometer.cc86 JankObserverHelper(const std::string& thread_name,
130 const std::string& thread_name, in JankObserverHelper() argument
136 slow_processing_counter_(std::string("Chrome.SlowMsg") + thread_name), in JankObserverHelper()
137 queueing_delay_counter_(std::string("Chrome.DelayMsg") + thread_name), in JankObserverHelper()
139 std::string("Chrome.ProcMsgL ") + thread_name, in JankObserverHelper()
142 std::string("Chrome.TotalMsgL ") + thread_name, in JankObserverHelper()
144 total_time_watchdog_(excessive_duration, thread_name, watchdog_enable) { in JankObserverHelper()
217 IOJankObserver(const char* thread_name, in IOJankObserver() argument
220 : helper_(thread_name, excessive_duration, watchdog_enable) {} in IOJankObserver()
273 UIJankObserver(const char* thread_name, in UIJankObserver() argument
[all …]
/external/chromium/base/metrics/
Dstats_table.cc119 char* thread_name(int slot_id) const { in thread_name() function in base::StatsTable::Private
318 std::string thread_name = name; in RegisterThread()
320 thread_name = kUnknownName; in RegisterThread()
321 strlcpy(impl_->thread_name(slot), thread_name.c_str(), in RegisterThread()
344 char* name = impl_->thread_name(index); in CountThreadsRegistered()
463 char* name = impl_->thread_name(data->slot); in UnregisterThread()
496 char* name = impl_->thread_name(index); in FindEmptyThread()
Dstats_table_unittest.cc37 std::string thread_name = "mainThread"; in TEST_F() local
38 int slot_id = table.RegisterThread(thread_name); in TEST_F()
/external/chromium/chrome/browser/metrics/
Dthread_watcher.h66 const std::string& thread_name,
74 std::string thread_name() const { return thread_name_; } in thread_name() function
96 const std::string& thread_name,
Dthread_watcher.cc20 const std::string& thread_name, in ThreadWatcher() argument
24 thread_name_(thread_name), in ThreadWatcher()
40 const std::string& thread_name, in StartWatching() argument
53 thread_id, thread_name, sleep_time, unresponsive_time)); in StartWatching()
61 new ThreadWatcher(thread_id, thread_name, sleep_time, unresponsive_time); in StartWatching()
Dthread_watcher_unittest.cc64 const std::string thread_name, in CustomThreadWatcher() argument
67 : ThreadWatcher(thread_id, thread_name, sleep_time, unresponsive_time), in CustomThreadWatcher()
295 EXPECT_EQ(io_thread_name, io_watcher_->thread_name()); in TEST_F()
302 EXPECT_EQ(webkit_thread_name, webkit_watcher_->thread_name()); in TEST_F()
/external/chromium/base/
Dmessage_loop.h231 void set_thread_name(const std::string& thread_name) { in set_thread_name() argument
233 thread_name_ = thread_name; in set_thread_name()
235 const std::string& thread_name() const { return thread_name_; } in thread_name() function
Dtracked_objects.cc320 return message_loop_->thread_name(); in ThreadName()
/external/chromium/base/threading/
Dthread.h120 const std::string &thread_name() { return name_; } in thread_name() function
Dthread_unittest.cc213 EXPECT_EQ("ThreadName", a.thread_name()); in TEST_F()
/external/chromium/net/proxy/
Dmulti_threaded_proxy_resolver.cc307 std::string thread_name = in Executor() local
309 thread_.reset(new base::Thread(thread_name.c_str())); in Executor()
/external/valgrind/tsan/
Dts_valgrind_intercepts.c2711 ANN_FUNC(void, AnnotateThreadName, char *file, int line, const char *thread_name) in ANN_FUNC() argument
2714 ANN_TRACE("--#%d %s[%p] %s:%d\n", tid, name, thread_name, file, line); in ANN_FUNC()
2715 DO_CREQ_v_W(TSREQ_SET_THREAD_NAME, const char *, thread_name); in ANN_FUNC()
/external/chromium/chrome/browser/sync/engine/
Dsyncer_thread.cc112 << MessageLoop::current()->thread_name(); in Start()