Searched refs:Thread (Results 101 - 125 of 1445) sorted by relevance

1234567891011>>

/external/lldb/include/lldb/Target/
H A DThreadPlanTracer.h20 #include "lldb/Target/Thread.h"
37 ThreadPlanTracer (Thread &thread, lldb::StreamSP &stream_sp);
38 ThreadPlanTracer (Thread &thread);
88 Thread &m_thread;
109 ThreadPlanAssemblyTracer (Thread &thread, lldb::StreamSP &stream_sp);
110 ThreadPlanAssemblyTracer (Thread &thread);
H A DThreadSpec.h21 // Thread ID
22 // Thread Index
23 // Thread Name
24 // Thread Queue Name
27 // That's why the thread matches spec test is done as a virtual method in Thread::MatchesSpec,
94 TIDMatches (Thread &thread) const;
106 IndexMatches (Thread &thread) const;
120 NameMatches (Thread &thread) const;
134 QueueNameMatches (Thread &thread) const;
137 ThreadPassesBasicTests (Thread
[all...]
H A DOperatingSystem.h73 ThreadWasSelected (Thread *thread) = 0;
76 CreateRegisterContextForThread (Thread *thread, lldb::addr_t reg_data_addr) = 0;
79 CreateThreadStopReason (Thread *thread) = 0;
/external/lldb/source/Target/
H A DThread.cpp1 //===-- Thread.cpp ----------------------------------------------*- C++ -*-===//
29 #include "lldb/Target/Thread.h"
52 Thread::GetGlobalProperties()
83 // is part of a new lldb_private::Thread instance. It will copy all current
98 Thread *thread = exe_ctx->GetThreadPtr();
121 m_collection_sp.reset (new ThreadOptionValueProperties(Thread::GetGlobalProperties().get()));
143 // Thread Event Data
148 Thread::ThreadEventData::GetFlavorString ()
150 static ConstString g_flavor ("Thread::ThreadEventData");
154 Thread
241 Thread::Thread (Process &process, lldb::tid_t tid) : function in class:Thread
[all...]
/external/valgrind/main/helgrind/tests/
H A Dtc09_bad_unlock.stderr.exp2 ---Thread-Announcement------------------------------------------
4 Thread #x is the program's root thread
8 Thread #x unlocked a not-locked lock at 0x........
17 ---Thread-Announcement------------------------------------------
19 Thread #x was created
27 Thread #x unlocked lock at 0x........ currently held by thread #x
39 Thread #x unlocked an invalid lock at 0x........
46 Thread #x's call to pthread_mutex_unlock failed
55 Thread #x unlocked a not-locked lock at 0x........
66 Thread #
[all...]
H A Dtc14_laog_dinphils.stderr.exp2 ---Thread-Announcement------------------------------------------
4 Thread #x was created
11 Thread #x: lock order "0x........ before 0x........" violated
/external/guava/guava-tests/test/com/google/common/util/concurrent/
H A DThreadFactoryBuilderTest.java25 import java.lang.Thread.UncaughtExceptionHandler;
44 @Override public void uncaughtException(Thread t, Throwable e) {
58 Thread thread = threadFactory.newThread(monitoredRunnable);
61 Thread defaultThread =
76 Thread thread2 = threadFactory.newThread(monitoredRunnable);
84 Thread thread3 = threadFactory2.newThread(monitoredRunnable);
92 private static void checkThreadPoolName(Thread thread, int threadId) {
107 Thread thread = factory.newThread(monitoredRunnable);
113 Thread thread = factory.newThread(monitoredRunnable);
118 for (int i = Thread
[all...]
/external/chromium_org/dbus/
H A Dtest_server.cc16 base::Thread* dbus_thread = new base::Thread("D-Bus Thread");
17 base::Thread::Options thread_options;
/external/chromium_org/media/cast/test/utility/
H A Dstandalone_cast_environment.cc26 base::Thread::Options(base::MessageLoop::TYPE_IO, 0));
27 CREATE_TASK_RUNNER(audio, base::Thread::Options());
28 CREATE_TASK_RUNNER(video, base::Thread::Options());
/external/chromium_org/third_party/libjingle/source/talk/p2p/base/
H A Dbasicpacketsocketfactory.h37 class Thread;
42 explicit BasicPacketSocketFactory(Thread* thread);
62 Thread* thread_;
/external/chromium_org/third_party/libjingle/source/talk/session/media/
H A Daudiomonitor.h50 AudioMonitor(VoiceChannel* voice_channel, rtc::Thread *monitor_thread);
57 rtc::Thread *monitor_thread();
67 rtc::Thread* monitoring_thread_;
H A Dtypingmonitor.h35 class Thread;
62 TypingMonitor(VoiceChannel* channel, rtc::Thread* worker_thread,
75 rtc::Thread* worker_thread_;
/external/compiler-rt/test/tsan/
H A Drace_on_read.cc14 void *Thread(void *x) { function
27 pthread_create(&t[0], NULL, Thread, NULL);
28 pthread_create(&t[1], NULL, Thread, NULL);
/external/chromium_org/third_party/webrtc/base/
H A Dthread_checker_unittest.cc56 class CallDoStuffOnThread : public Thread {
59 : Thread(),
68 // New method. Needed since Thread::Join is protected, and it is called by
71 Thread::Join();
81 class DeleteThreadCheckerClassOnThread : public Thread {
85 : Thread(),
94 // New method. Needed since Thread::Join is protected, and it is called by
97 Thread::Join();
/external/chromium-trace/trace-viewer/src/tracing/trace_model/
H A Dasync_slice_group_test.js12 var Thread = tracing.trace_model.Thread;
26 var t1 = new Thread(p1, 1);
61 var t1 = new Thread(p1, 1);
/external/chromium_org/base/message_loop/
H A Dmessage_loop_proxy_impl_unittest.cc42 io_thread_.reset(new Thread("MessageLoopProxyImplTest_IO"));
43 file_thread_.reset(new Thread("MessageLoopProxyImplTest_File"));
75 scoped_ptr<Thread> io_thread_;
76 scoped_ptr<Thread> file_thread_;
102 scoped_ptr<Thread> test_thread(
103 new Thread("MessageLoopProxyImplTest_Dummy"));
118 scoped_ptr<Thread> test_thread(
119 new Thread("MessageLoopProxyImplTest_Dummy"));
/external/chromium_org/chrome/utility/
H A Dprofile_import_handler.h19 class Thread;
46 // Thread that importer runs on, while ProfileImportThread handles messages
48 scoped_ptr<base::Thread> import_thread_;
/external/chromium_org/cloud_print/service/win/
H A Dservice_listener.h14 class Thread;
35 scoped_ptr<base::Thread> ipc_thread_;
/external/chromium_org/content/renderer/
H A Din_process_renderer_thread.h18 class InProcessRendererThread : public base::Thread {
34 CONTENT_EXPORT base::Thread* CreateInProcessRendererThread(
/external/chromium_org/content/utility/
H A Din_process_utility_thread.h17 class InProcessUtilityThread : public base::Thread {
23 // base::Thread implementation:
35 CONTENT_EXPORT base::Thread* CreateInProcessUtilityThread(
/external/chromium_org/device/bluetooth/
H A Dbluetooth_socket_thread.h14 class Thread;
19 // Thread abstraction used by |BluetoothSocketChromeOS| and |BluetoothSocketWin|
42 scoped_ptr<base::Thread> thread_;
/external/chromium_org/net/base/
H A Dnetwork_config_watcher_mac.h15 class Thread;
55 scoped_ptr<base::Thread> notifier_thread_;
/external/chromium_org/remoting/client/
H A Dclient_context.h39 base::Thread decode_thread_;
42 base::Thread audio_decode_thread_;
/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/
H A Dportallocatorfactory.h53 rtc::Thread* worker_thread);
60 explicit PortAllocatorFactory(rtc::Thread* worker_thread);
/external/chromium_org/third_party/libjingle/source/talk/examples/stunserver/
H A Dstunserver_main.cc51 rtc::Thread *pthMain = rtc::Thread::Current();

Completed in 1456 milliseconds

1234567891011>>