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

1 2 3 4

  /external/jemalloc/test/unit/
prof_thread_name.c 26 mallctl_thread_name_set_impl(const char *thread_name, const char *func,
31 (void *)&thread_name, sizeof(thread_name)), 0,
34 mallctl_thread_name_get_impl(thread_name, func, line);
41 const char *thread_name; local
49 thread_name = NULL;
51 (void *)&thread_name, sizeof(thread_name)), EFAULT,
53 thread_name);
56 thread_name = "hi\nthere"
85 char thread_name[16] = ""; local
    [all...]
  /frameworks/base/core/proto/android/os/
looper.proto 26 string thread_name = 1;
  /external/valgrind/drd/tests/
thread_name.c 23 char thread_name[32]; local
25 snprintf(thread_name, sizeof(thread_name),
27 ANNOTATE_THREAD_NAME(thread_name);
36 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 82 int pthread_setname_np(pthread_t t, const char* thread_name) {
85 size_t thread_name_len = strlen(thread_name);
90 return prctl(PR_SET_NAME, thread_name) ? errno : 0;
97 ssize_t n = TEMP_FAILURE_RETRY(write(fd, thread_name, thread_name_len));
  /external/webrtc/webrtc/modules/utility/include/
process_thread.h 32 static rtc::scoped_ptr<ProcessThread> Create(const char* thread_name);
  /system/core/debuggerd/libdebuggerd/
backtrace.cpp 59 static void log_thread_name(log_t* log, pid_t tid, const char* thread_name) {
60 _LOG(log, logtype::BACKTRACE, "\n\"%s\" sysTid=%d\n", thread_name, tid);
64 const std::string& thread_name) {
65 log_thread_name(log, tid, thread_name.c_str());
87 const std::string& thread_name = it.second; local
89 dump_thread(&log, map, pid, thread_tid, thread_name.c_str());
104 char thread_name[16]; local
105 read_with_default("/proc/self/comm", thread_name, sizeof(thread_name), "<unknown>");
106 log_thread_name(&log, tid, thread_name);
    [all...]
  /libcore/luni/src/test/native/
libcore_java_lang_ThreadTest.cpp 48 std::unique_ptr<char[]> thread_name(new char[32]);
49 if (prctl(PR_GET_NAME, reinterpret_cast<unsigned long>(thread_name.get()), 0L, 0L, 0L) == 0) {
53 if (attach_with_name && (thread_name.get() != native_thread_name)) {
54 exception_message = new std::string("expected_thread_name != thread_name: ");
58 exception_message->append(thread_name.get());
63 if (!attach_with_name && strncmp(thread_name.get(), "Thread", 6)) {
65 exception_message->append(thread_name.get());
  /art/runtime/
runtime_linux.cc 32 std::string thread_name(GetThreadName(tid));
34 << "* Process " << getpid() << " thread " << tid << " \"" << thread_name
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/bt/osi/test/
thread_test.cc 26 ASSERT_STREQ(thread_name(thread), "test_name");
32 ASSERT_STREQ("0123456789abcdef", thread_name(thread));
38 ASSERT_STREQ("0123456789abcdef", thread_name(thread));
  /system/bt/osi/include/
thread.h 58 // Requests |thread| to stop. Only |thread_free| and |thread_name| may be called
84 const char* thread_name(const thread_t* thread);
  /system/core/libcutils/
sched_policy.cpp 368 char thread_name[255]; local
371 memset(thread_name, 0, sizeof(thread_name));
385 strncpy(thread_name, p, (q-p));
389 SLOGD("vvv tid %d (%s)", tid, thread_name);
395 SLOGD("^^^ tid %d (%s)", tid, thread_name);
398 SLOGD("/// tid %d (%s)", tid, thread_name);
401 SLOGD("??? tid %d (%s)", tid, thread_name);
  /external/webrtc/webrtc/base/
platform_thread.h 59 PlatformThread(ThreadRunFunction func, void* obj, const char* thread_name);
platform_thread.cc 96 const char* thread_name)
99 name_(thread_name ? thread_name : "webrtc"),
  /external/webrtc/webrtc/modules/utility/source/
process_thread_impl.cc 40 const char* thread_name) {
41 return rtc::scoped_ptr<ProcessThread>(new ProcessThreadImpl(thread_name));
44 ProcessThreadImpl::ProcessThreadImpl(const char* thread_name)
47 thread_name_(thread_name) {}
  /external/google-breakpad/src/client/mac/handler/
exception_handler.h 99 mach_port_t thread_name);
193 mach_port_t thread_name,
  /external/libmicrohttpd/src/include/
w32functions.h 199 static void W32_SetThreadName(const DWORD thread_id, const char *thread_name)
205 * @param thread_name name to set
207 void W32_SetThreadName(const DWORD thread_id, const char *thread_name);
  /art/test/931-agent-thread/
agent_thread.cc 95 ScopedLocalRef<jobject> thread_name(env, env->NewStringUTF("Agent Thread"));
96 if (thread_name.get() == nullptr) {
133 thread_name.get(),
  /external/chromium-trace/catapult/devil/devil/utils/
timeout_retry.py 150 thread_name = 'TimeoutThread-%d-for-%s' % (num_try,
153 name=thread_name)
174 thread_name, desc, num_try, retries + 1, e)
  /external/libmojo/third_party/catapult/devil/devil/utils/
timeout_retry.py 148 thread_name = 'TimeoutThread-%d-for-%s' % (num_try,
151 name=thread_name)
172 thread_name, desc, num_try, retries + 1, e)
  /system/core/debuggerd/handler/
debuggerd_handler.cpp 123 char thread_name[MAX_TASK_NAME_LEN + 1]; // one more for termination local
124 if (prctl(PR_GET_NAME, reinterpret_cast<unsigned long>(thread_name), 0, 0, 0) != 0) {
125 strcpy(thread_name, "<name unknown>");
129 thread_name[MAX_TASK_NAME_LEN] = 0;
134 thread_name);
186 signal_name, code_desc, addr_desc, __gettid(), thread_name);
  /external/compiler-rt/lib/tsan/rtl/
tsan_report.cc 77 const char *thread_name(char *buf, int tid) { function in namespace:__tsan
162 thread_name(thrbuf, mop->tid));
188 thread_name(thrbuf, loc->tid));
191 Printf(" Location is stack of %s.\n\n", thread_name(thrbuf, loc->tid));
193 Printf(" Location is TLS of %s.\n\n", thread_name(thrbuf, loc->tid));
196 loc->fd, thread_name(thrbuf, loc->tid));
240 thread_name(thrbuf, rt->parent_tid));
313 Printf("%s:\n", thread_name(thrbuf, rep->unique_tids[i]));
  /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);

Completed in 1469 milliseconds

1 2 3 4