HomeSort by relevance Sort by last modified time
    Searched defs:thread_name (Results 1 - 9 of 9) sorted by null

  /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 274 char thread_name[255]; local
278 memset(thread_name, 0, sizeof(thread_name));
292 strncpy(thread_name, p, (q-p));
296 SLOGD("vvv tid %d (%s)", tid, thread_name);
301 SLOGD("^^^ tid %d (%s)", tid, thread_name);
304 SLOGD("/// tid %d (%s)", tid, thread_name);
307 SLOGD("??? tid %d (%s)", tid, thread_name);
  /external/linux-tools-perf/scripts/python/
sched-migration.py 31 def thread_name(pid): function
51 return "%s gone to sleep" % thread_name(self.sleeper)
62 return "%s woke up" % thread_name(self.wakee)
73 return "new forked task %s" % thread_name(self.child)
84 return "task migrated in %s" % thread_name(self.new)
95 return "task migrated out %s" % thread_name(self.old)
276 raw += "%s \n" % thread_name(t)
  /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()));

Completed in 430 milliseconds