/external/valgrind/main/drd/tests/ |
thread_name.c | 22 char thread_name[32]; local 24 snprintf(thread_name, sizeof(thread_name), 26 ANNOTATE_THREAD_NAME(thread_name); 33 fprintf(stderr, "\n%s\n\n", thread_name);
|
/external/chromium/base/threading/ |
thread.h | 120 const std::string &thread_name() { return name_; } function in class:base::Thread
|
/external/chromium/base/metrics/ |
stats_table_unittest.cc | 37 std::string thread_name = "mainThread"; local 38 int slot_id = table.RegisterThread(thread_name);
|
stats_table.cc | 42 // If the first character of the thread_name is '\0', then that column is 119 char* thread_name(int slot_id) const { function in class:base::StatsTable::Private 318 std::string thread_name = name; 320 thread_name = kUnknownName; 321 strlcpy(impl_->thread_name(slot), thread_name.c_str(), 344 char* name = impl_->thread_name(index); 463 char* name = impl_->thread_name(data->slot); 496 char* name = impl_->thread_name(index);
|
/external/chromium/chrome/browser/metrics/ |
thread_watcher.h | 59 // create ThreadWatcher object for the given thread_id, thread_name, 66 const std::string& thread_name, 74 std::string thread_name() const { return thread_name_; } function in class:ThreadWatcher 96 const std::string& thread_name,
|
/system/core/libcutils/ |
sched_policy.c | 229 char thread_name[255]; local 233 memset(thread_name, 0, sizeof(thread_name)); 247 strncpy(thread_name, p, (q-p)); 250 SLOGD("vvv tid %d (%s)", tid, thread_name); 252 SLOGD("^^^ tid %d (%s)", tid, thread_name); 254 SLOGD("??? tid %d (%s)", tid, thread_name);
|
/external/chromium/base/ |
message_loop.h | 231 void set_thread_name(const std::string& thread_name) { 233 thread_name_ = thread_name; 235 const std::string& thread_name() const { return thread_name_; } function in class:MessageLoop
|
/external/chromium/net/proxy/ |
multi_threaded_proxy_resolver.cc | 307 std::string thread_name = local 309 thread_.reset(new base::Thread(thread_name.c_str()));
|