/external/valgrind/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 | 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...] |
/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...] |
/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));
|
/external/libxcam/xcore/ |
xcam_thread.cpp | 104 char thread_name[16]; local 105 xcam_mem_clear (thread_name); 106 snprintf (thread_name, sizeof (thread_name), "xc:%s", XCAM_STR(_name)); 107 int ret = pthread_setname_np (_thread_id, thread_name);
|
/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());
|
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ThreadReference/ |
FramesDebuggee.java | 41 public volatile static String THREAD_NAME = "TBD"; 55 synchronizer.sendMessage(THREAD_NAME); 63 THREAD_NAME = Thread.currentThread().getName();
|
/art/runtime/ |
monitor_android.cc | 62 std::string thread_name; local 63 self->GetThreadName(thread_name); 64 ctx << thread_name; local
|
runtime_linux.cc | 39 std::string thread_name(GetThreadName(tid)); 41 << "* Process " << getpid() << " thread " << tid << " \"" << thread_name
|
/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));
|
/system/core/debuggerd/libdebuggerd/include/libdebuggerd/ |
types.h | 27 std::string thread_name; member in struct:ThreadInfo
|
/art/libartbase/base/ |
utils.cc | 116 void SetThreadName(const char* thread_name) { 119 const char* s = thread_name; 128 int len = s - thread_name; 130 s = thread_name; 132 s = thread_name + len - 15; 144 pthread_setname_np(thread_name);
|
/prebuilts/jdk/jdk8/darwin-x86/sample/dtrace/hotspot/ |
monitors.d | 60 self string thread_name; 82 self->thread_name = (string) self->str_ptr; 85 arg2, arg4, self->thread_name, arg3); 87 threads[arg2] = self->thread_name; 95 self->thread_name = (string) self->str_ptr; 99 arg2, arg4, self->thread_name, arg3);
|
/system/core/libcutils/ |
sched_policy.cpp | 373 char thread_name[255]; local 376 memset(thread_name, 0, sizeof(thread_name)); 390 strncpy(thread_name, p, (q-p)); 394 SLOGD("vvv tid %d (%s)", tid, thread_name); 400 SLOGD("^^^ tid %d (%s)", tid, thread_name); 403 SLOGD("/// tid %d (%s)", tid, thread_name); 406 SLOGD("RT tid %d (%s)", tid, thread_name); 409 SLOGD("??? tid %d (%s)", tid, thread_name);
|
/external/testng/src/main/java/org/testng/internal/thread/ |
ThreadUtil.java | 21 private static final String THREAD_NAME = "TestNG";
27 return Thread.currentThread().getName().contains(THREAD_NAME);
53 result.setName(THREAD_NAME);
|
/art/test/912-classes/ |
classes.cc | 305 std::string thread_name = GetThreadName(jenv, jni_env, thread); local 306 if (thread_name == "") { 309 if (thread_name_filter_ != "" && thread_name_filter_ != thread_name) { 316 thread_name.c_str())); 327 std::string thread_name = GetThreadName(jenv, jni_env, thread); local 328 if (thread_name == "") { 331 if (thread_name_filter_ != "" && thread_name_filter_ != thread_name) { 339 thread_name.c_str(), 391 ScopedLocalRef<jobject> thread_name(env, env->NewStringUTF(name_str.c_str())); 392 CHECK(thread_name.get() != nullptr) [all...] |
/frameworks/base/core/proto/android/os/ |
looper.proto | 29 optional string thread_name = 1;
|
/external/jemalloc/src/ |
prof.c | 130 static char *prof_thread_name_alloc(tsdn_t *tsdn, const char *thread_name); 1308 (tdata->thread_name != NULL) ? " " : "", 1309 (tdata->thread_name != NULL) ? tdata->thread_name : "")) 1921 char *thread_name = (tdata->thread_name != NULL) ? local [all...] |
/external/chromium-trace/catapult/common/py_trace_event/py_trace_event/ |
trace_event.py | 93 def trace_set_thread_name(thread_name): 95 "thread_name", {"name": thread_name}) 149 def trace_set_thread_name(thread_name): 150 del thread_name # unused.
|
/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]));
|
/external/tensorflow/tensorflow/contrib/tpu/profiler/ |
trace_events_to_json_test.cc | 78 {"ph":"M", "pid":1, "tid":2, "name":"thread_name", 84 {"ph":"M", "pid":2, "tid":2, "name":"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);
|