HomeSort by relevance Sort by last modified time
    Searched full:thread_name (Results 51 - 75 of 141) sorted by null

1 23 4 5 6

  /external/lldb/source/Host/linux/
Host.cpp 443 Host::ThreadCreated (const char *thread_name)
445 if (!Host::SetThreadName (LLDB_INVALID_PROCESS_ID, LLDB_INVALID_THREAD_ID, thread_name))
447 Host::SetShortThreadName (LLDB_INVALID_PROCESS_ID, LLDB_INVALID_THREAD_ID, thread_name, 16);
463 std::string thread_name(comm_str, length);
464 return thread_name;
  /art/runtime/
runtime_linux.cc 295 std::string thread_name(GetThreadName(tid));
307 << "Thread: " << tid << " \"" << thread_name << "\"\n"
321 << "* Process " << getpid() << " thread " << tid << " \"" << thread_name << "\""
instrumentation.cc 306 std::string thread_name; local
307 thread->GetThreadName(thread_name);
308 LOG(INFO) << "Installing exit stubs in " << thread_name;
407 std::string thread_name; local
408 thread->GetThreadName(thread_name);
409 LOG(INFO) << "Removing exit stubs in " << thread_name;
    [all...]
  /external/chromium_org/content/browser/
browser_thread_impl.cc 128 : Thread(message_loop->thread_name()), identifier_(identifier) {
231 if (!thread_name().empty()) {
232 base::android::AttachCurrentThreadWithName(thread_name());
410 base::MessageLoop::current()->thread_name();
  /external/chromium_org/media/audio/
audio_device_thread.h 81 const char* thread_name,
  /external/lldb/include/lldb/API/
SBBreakpoint.h 107 SetThreadName (const char *thread_name);
  /external/lldb/scripts/Python/interface/
SBBreakpointLocation.i 86 SetThreadName (const char *thread_name);
  /external/lldb/source/Breakpoint/
BreakpointLocation.cpp 155 BreakpointLocation::SetThreadName (const char *thread_name)
157 if (thread_name != NULL)
158 GetLocationOptions()->GetThreadSpec()->SetName(thread_name);
164 m_options_ap->GetThreadSpec()->SetName(thread_name);
  /external/lldb/source/Core/
Communication.cpp 242 char thread_name[1024]; local
243 snprintf(thread_name, sizeof(thread_name), "<lldb.comm.%s>", m_broadcaster_name.AsCString());
246 m_read_thread = Host::ThreadCreate (thread_name, Communication::ReadThread, this, error_ptr);
  /external/chromium_org/base/android/
jni_android.cc 88 JNIEnv* AttachCurrentThreadWithName(const std::string& thread_name) {
92 args.name = thread_name.c_str();
  /hardware/qcom/display/msm8084/libhwcomposer/
hwc_vsync.cpp 106 char thread_name[64] = HWC_VSYNC_THREAD_NAME; local
107 prctl(PR_SET_NAME, (unsigned long) &thread_name, 0, 0, 0);
hwc_uevents.cpp 317 char thread_name[64] = HWC_UEVENT_THREAD_NAME; local
318 prctl(PR_SET_NAME, (unsigned long) &thread_name, 0, 0, 0);
  /hardware/qcom/display/msm8226/libhwcomposer/
hwc_vsync.cpp 96 char thread_name[64] = HWC_VSYNC_THREAD_NAME; local
97 prctl(PR_SET_NAME, (unsigned long) &thread_name, 0, 0, 0);
hwc_uevents.cpp 324 char thread_name[64] = HWC_UEVENT_THREAD_NAME; local
325 prctl(PR_SET_NAME, (unsigned long) &thread_name, 0, 0, 0);
  /external/chromium_org/chrome/browser/metrics/
thread_watcher.h 77 const std::string& thread_name; member in struct:ThreadWatcher::WatchingParams
92 thread_name(thread_name_in),
102 // will create ThreadWatcher object for the given |thread_id|, |thread_name|.
120 std::string thread_name() const { return thread_name_; } function in class:ThreadWatcher
455 const std::string& thread_name,
thread_watcher.cc 129 thread_name_(params.thread_name),
629 std::string thread_name = values[0]; local
647 (*crash_on_hang_threads)[thread_name] = crash_data;
692 const std::string& thread_name,
700 crash_on_hang_threads.find(thread_name);
711 thread_name,
    [all...]
  /external/chromium_org/sync/engine/
sync_scheduler_impl.cc 213 std::string thread_name = base::MessageLoop::current()->thread_name(); local
214 if (thread_name.empty())
215 thread_name = "<Main thread>";
217 << thread_name << " with mode " << GetModeString(mode);
  /frameworks/base/core/jni/
com_android_internal_os_Zygote.cpp 381 void SetThreadName(const char* thread_name) {
384 const char* s = thread_name;
393 const int len = s - thread_name;
395 s = thread_name;
397 s = thread_name + len - 15;
  /external/lldb/source/API/
SBBreakpoint.cpp 417 SBBreakpoint::SetThreadName (const char *thread_name)
421 log->Printf ("SBBreakpoint(%p)::SetThreadName (%s)", m_opaque_sp.get(), thread_name);
426 m_opaque_sp->GetOptions()->GetThreadSpec()->SetName (thread_name);
  /external/valgrind/main/drd/tests/
Makefile.am 314 thread_name.stderr.exp \
315 thread_name.vgtest \
366 thread_name \
  /external/chromium_org/tools/stats_viewer/
stats_table.cs 529 string thread_name = Marshal.PtrToStringUni((IntPtr)offset);
530 if (thread_name.Length > 0) {
  /frameworks/base/core/java/android/widget/
Filter.java 42 private static final String THREAD_NAME = "Filter";
105 THREAD_NAME, android.os.Process.THREAD_PRIORITY_BACKGROUND);
  /external/bluetooth/bluedroid/osi/src/
thread.c 135 const char *thread_name(const thread_t *thread) { function
  /external/chromium_org/base/threading/
thread_unittest.cc 198 EXPECT_EQ("ThreadName", a.thread_name());
  /external/chromium_org/chrome/browser/task_profiler/
task_profiler_data_serializer.cc 50 dictionary->Set(prefix + "_thread", new base::StringValue(birth.thread_name));

Completed in 2594 milliseconds

1 23 4 5 6