Home
last modified time | relevance | path

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

/external/chromium/base/
Dstats_table.cc128 char* thread_name(int slot_id) const { in thread_name() function in StatsTablePrivate
297 std::string thread_name = name; in RegisterThread() local
299 thread_name = kUnknownName; in RegisterThread()
300 base::strlcpy(impl_->thread_name(slot), thread_name.c_str(), in RegisterThread()
335 char* name = impl_->thread_name(data->slot); in UnregisterThread()
362 char* name = impl_->thread_name(index); in CountThreadsRegistered()
390 char* name = impl_->thread_name(index); in FindEmptyThread()
Dmessage_loop.h199 void set_thread_name(const std::string& thread_name) { in set_thread_name() argument
201 thread_name_ = thread_name; in set_thread_name()
203 const std::string& thread_name() const { return thread_name_; } in thread_name() function
Dthread.h101 const std::string &thread_name() { return name_; } in thread_name() function
Dstats_table_unittest.cc40 std::string thread_name = "mainThread"; in TEST_F() local
41 int slot_id = table.RegisterThread(thread_name); in TEST_F()
Dthread_unittest.cc134 EXPECT_EQ("ThreadName", a.thread_name()); in TEST_F()
Dtracked_objects.cc298 return message_loop_->thread_name(); in ThreadName()