/external/valgrind/main/drd/tests/ |
D | thread_name.c | 22 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()
|
D | thread_name.vgtest | 1 prereq: test -e thread_name && ./supported_libpthread 3 prog: thread_name
|
D | Makefile.am | 255 thread_name.stderr.exp \ 256 thread_name.vgtest \ 298 thread_name \ program
|
D | Makefile.in | 66 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/ |
D | jankometer.cc | 86 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/ |
D | stats_table.cc | 119 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()
|
D | stats_table_unittest.cc | 37 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/ |
D | thread_watcher.h | 66 const std::string& thread_name, 74 std::string thread_name() const { return thread_name_; } in thread_name() function 96 const std::string& thread_name,
|
D | thread_watcher.cc | 20 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()
|
D | thread_watcher_unittest.cc | 64 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/ |
D | message_loop.h | 231 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
|
D | tracked_objects.cc | 320 return message_loop_->thread_name(); in ThreadName()
|
/external/chromium/base/threading/ |
D | thread.h | 120 const std::string &thread_name() { return name_; } in thread_name() function
|
D | thread_unittest.cc | 213 EXPECT_EQ("ThreadName", a.thread_name()); in TEST_F()
|
/external/chromium/net/proxy/ |
D | multi_threaded_proxy_resolver.cc | 307 std::string thread_name = in Executor() local 309 thread_.reset(new base::Thread(thread_name.c_str())); in Executor()
|
/external/valgrind/tsan/ |
D | ts_valgrind_intercepts.c | 2711 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/ |
D | syncer_thread.cc | 112 << MessageLoop::current()->thread_name(); in Start()
|