HomeSort by relevance Sort by last modified time
    Searched full:thread_name (Results 1 - 25 of 96) sorted by null

1 2 3 4

  /external/valgrind/main/drd/tests/
thread_name.vgtest 1 prereq: test -e thread_name && ./supported_libpthread
3 prog: thread_name
thread_name_xml.vgtest 1 prereq: test -e thread_name && ./supported_libpthread
3 prog: thread_name
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);
thread_name.stderr.exp 8 by 0x........: thread_func (thread_name.c:?)
17 by 0x........: thread_func (thread_name.c:?)
26 by 0x........: thread_func (thread_name.c:?)
35 by 0x........: thread_func (thread_name.c:?)
44 by 0x........: thread_func (thread_name.c:?)
53 by 0x........: thread_func (thread_name.c:?)
62 by 0x........: thread_func (thread_name.c:?)
71 by 0x........: thread_func (thread_name.c:?)
80 by 0x........: thread_func (thread_name.c:?)
89 by 0x........: thread_func (thread_name.c:?
    [all...]
thread_name_xml.stderr.exp 22 <exe>./thread_name</exe>
53 <file>thread_name.c</file>
89 <file>thread_name.c</file>
125 <file>thread_name.c</file>
161 <file>thread_name.c</file>
197 <file>thread_name.c</file>
233 <file>thread_name.c</file>
269 <file>thread_name.c</file>
305 <file>thread_name.c</file>
341 <file>thread_name.c</file
    [all...]
  /bionic/libc/bionic/
pthread_setname_np.cpp 46 int pthread_setname_np(pthread_t t, const char* thread_name) {
49 if (thread_name == NULL) {
53 size_t thread_name_len = strlen(thread_name);
60 return prctl(PR_SET_NAME, thread_name) ? errno : 0;
78 ssize_t n = TEMP_FAILURE_RETRY(write(fd, thread_name, thread_name_len));
  /external/chromium-trace/trace-viewer/examples/stream_server/handlers/
stream_wsh.py 23 def make_thread(thread_name, base_time):
25 out.append('\"n\": \"{0}\",'.format(thread_name))
33 def make_thread_payload(pid, thread_name, base_time):
37 out.append(make_thread(thread_name, base_time))
41 def make_thread_command(base_time, thread_name):
44 out.append(make_thread_payload('314159', thread_name, base_time))
  /art/runtime/
monitor_android.cc 72 std::string thread_name;
73 self->GetThreadName(thread_name);
74 cp = EventLogWriteString(cp, thread_name.c_str(), thread_name.size());
  /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/chromium_org/media/audio/
audio_device_thread.cc 32 const char* thread_name);
71 const char* thread_name) {
74 thread_ = new AudioDeviceThread::Thread(callback, socket, thread_name);
94 const char* thread_name)
98 thread_name_(thread_name) {
  /external/chromium-trace/trace-viewer/test_data/
simple_trace.json 58 "name": "thread_name", "args": {"name": "threadA"}},
60 "name": "thread_name", "args": {"name": "threadB"}},
62 "name": "thread_name", "args": {"name": "threadC"}}
  /bionic/linker/
debugger.cpp 128 char thread_name[MAX_TASK_NAME_LEN + 1]; // one more for termination local
129 if (prctl(PR_GET_NAME, (unsigned long)thread_name, 0, 0, 0) != 0) {
130 strcpy(thread_name, "<name unknown>");
134 thread_name[MAX_TASK_NAME_LEN] = 0;
142 info->si_code, gettid(), thread_name);
146 signum, signal_name, gettid(), thread_name);
  /external/chromium/chrome/browser/
jankometer.cc 86 JankObserverHelper(const std::string& thread_name,
130 const std::string& thread_name,
136 slow_processing_counter_(std::string("Chrome.SlowMsg") + thread_name),
137 queueing_delay_counter_(std::string("Chrome.DelayMsg") + thread_name),
139 std::string("Chrome.ProcMsgL ") + thread_name,
142 std::string("Chrome.TotalMsgL ") + thread_name,
144 total_time_watchdog_(excessive_duration, thread_name, watchdog_enable) {
217 IOJankObserver(const char* thread_name,
220 : helper_(thread_name, excessive_duration, watchdog_enable) {}
273 UIJankObserver(const char* thread_name,
    [all...]
  /external/chromium_org/chrome/browser/
jankometer.cc 85 JankObserverHelper(const std::string& thread_name,
129 const std::string& thread_name,
135 slow_processing_counter_(std::string("Chrome.SlowMsg") + thread_name),
136 queueing_delay_counter_(std::string("Chrome.DelayMsg") + thread_name),
138 std::string("Chrome.ProcMsgL ") + thread_name,
141 std::string("Chrome.TotalMsgL ") + thread_name,
143 total_time_watchdog_(excessive_duration, thread_name, watchdog_enable) {
216 IOJankObserver(const char* thread_name,
219 : helper_(thread_name, excessive_duration, watchdog_enable) {}
272 UIJankObserver(const char* thread_name,
    [all...]
  /external/chromium_org/ppapi/shared_impl/
ppb_trace_event_impl.h 44 static void SetThreadName(const char* thread_name);
ppb_trace_event_impl.cc 88 void TraceEventImpl::SetThreadName(const char* thread_name) {
89 base::PlatformThread::SetName(thread_name);
  /external/compiler-rt/lib/tsan/rtl/
tsan_report.cc 40 const char *thread_name(char *buf, int tid) { function in namespace:__tsan
104 thread_name(thrbuf, mop->tid));
118 loc->size, loc->addr, thread_name(thrbuf, loc->tid));
121 Printf(" Location is stack of %s.\n\n", thread_name(thrbuf, loc->tid));
123 Printf(" Location is TLS of %s.\n\n", thread_name(thrbuf, loc->tid));
126 loc->fd, thread_name(thrbuf, loc->tid));
149 thread_name(thrbuf, rt->parent_tid));
  /external/chromium_org/ppapi/c/dev/
ppb_trace_event_dev.h 95 void (*SetThreadName)(const char* thread_name);
111 void (*SetThreadName)(const char* thread_name);
  /hardware/qcom/display/msm8960/libhwcomposer/
hwc_vsync.cpp 57 char thread_name[64] = HWC_VSYNC_THREAD_NAME; local
58 prctl(PR_SET_NAME, (unsigned long) &thread_name, 0, 0, 0);
  /hardware/qcom/display/msm8x26/libhwcomposer/
hwc_vsync.cpp 57 char thread_name[64] = HWC_VSYNC_THREAD_NAME; local
58 prctl(PR_SET_NAME, (unsigned long) &thread_name, 0, 0, 0);
  /external/guava/guava-tests/test/com/google/common/util/concurrent/
ThreadFactoryBuilderTest.java 170 final String THREAD_NAME = "ludicrous speed";
176 thread.setName(THREAD_NAME);
187 assertEquals(THREAD_NAME, thread.getName());
  /external/chromium/chrome/browser/metrics/
thread_watcher.cc 20 const std::string& thread_name,
24 thread_name_(thread_name),
40 const std::string& thread_name,
53 thread_id, thread_name, sleep_time, unresponsive_time));
61 new ThreadWatcher(thread_id, thread_name, sleep_time, unresponsive_time);
  /external/chromium_org/base/
tracked_objects_unittest.cc 41 // Simulate a birth on the thread named |thread_name|, at the given
43 void TallyABirth(const Location& location, const std::string& thread_name) {
44 // If the |thread_name| is empty, we don't initialize system with a thread
46 if (!thread_name.empty())
73 EXPECT_EQ(birth_thread, process_data.tasks[0].birth.thread_name);
198 EXPECT_EQ(kWorkerThreadName, process_data.tasks[0].birth.thread_name);
216 process_data.descendants[0].parent.thread_name);
222 EXPECT_EQ(kWorkerThreadName, process_data.descendants[0].child.thread_name);
469 process_data_post_reset.tasks[0].birth.thread_name);
555 EXPECT_EQ(kMainThreadName, process_data.tasks[0].birth.thread_name);
    [all...]
  /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_org/chrome/browser/metrics/
thread_watcher_unittest.cc 73 const std::string thread_name,
76 : ThreadWatcher(WatchingParams(thread_id, thread_name, sleep_time,
354 std::string thread_name = values[0]; local
357 crash_on_hang_threads.find(thread_name);
384 std::string thread_name = values[0]; local
387 crash_on_hang_threads.find(thread_name);
414 std::string thread_name = values[0]; local
417 crash_on_hang_threads.find(thread_name);
437 EXPECT_EQ(io_thread_name, io_watcher_->thread_name());
444 EXPECT_EQ(db_thread_name, db_watcher_->thread_name());
    [all...]

Completed in 710 milliseconds

1 2 3 4