Searched defs:Thread (Results 76 - 100 of 123) sorted by relevance

12345

/external/libunwind/doc/
H A Dunw_is_signal_frame.tex39 \section{Thread and Signal Safety}
H A Dunw_regname.tex30 \section{Thread and Signal Safety}
H A Dunw_set_caching_policy.tex54 \section{Thread and Signal Safety}
H A Dunw_set_fpreg.tex43 \section{Thread and Signal Safety}
H A Dunw_set_reg.tex44 \section{Thread and Signal Safety}
H A Dunw_step.tex29 \section{Thread and Signal Safety}
/external/chromium_org/base/threading/
H A Dthread.cc26 // using a Thread to setup and run a MessageLoop.
35 Thread::SetThreadWasQuitProperly(true);
40 struct Thread::StartupData {
42 const Thread::Options& options;
52 Thread::Options::Options()
57 Thread::Options::Options(MessageLoop::Type type,
63 Thread::Options::~Options() {
66 Thread::Thread(const std::string& name) function in class:base::Thread
81 Thread
[all...]
H A Dthread.h27 // WARNING! SUBCLASSES MUST CALL Stop() IN THEIR DESTRUCTORS! See ~Thread().
31 // (1) Thread::CleanUp()
34 class BASE_EXPORT Thread : PlatformThread::Delegate { class in namespace:base
61 explicit Thread(const std::string& name);
65 // NOTE: ALL SUBCLASSES OF Thread MUST CALL Stop() IN THEIR DESTRUCTORS (or
71 virtual ~Thread();
103 // this method returns, the Thread object is completely reset and may be used
109 // NOTE: If you are a consumer of Thread, it is not necessary to call this
110 // before deleting your Thread objects, as the destructor will do it.
111 // IF YOU ARE A SUBCLASS OF Thread, YO
[all...]
/external/chromium_org/media/audio/
H A Daudio_device_thread.cc24 // after the Thread object itself has been deleted.
25 class AudioDeviceThread::Thread class in class:media::AudioDeviceThread
27 public base::RefCountedThreadSafe<AudioDeviceThread::Thread> {
29 Thread(AudioDeviceThread::Callback* callback,
43 friend class base::RefCountedThreadSafe<AudioDeviceThread::Thread>;
44 virtual ~Thread();
60 DISALLOW_COPY_AND_ASSIGN(Thread);
76 thread_ = new AudioDeviceThread::Thread(
94 // AudioDeviceThread::Thread implementation
95 AudioDeviceThread::Thread function in class:media::AudioDeviceThread::Thread
[all...]
/external/compiler-rt/test/tsan/
H A Djava_move_overlap.cc15 void *Thread(void *p) { function
55 pthread_create(&th, 0, Thread, 0);
H A Dunaligned_race.cc124 void *Thread(void *p) { function
133 pthread_create(&th, 0, Thread, 0);
/external/deqp/framework/delibs/dethread/unix/
H A DdeThreadUnix.c2 * drawElements Thread Library
43 } Thread; typedef in typeref:struct:Thread_s
45 DE_STATIC_ASSERT(sizeof(deThread) >= sizeof(Thread*));
49 Thread* thread = (Thread*)entryPtr;
62 Thread* thread = (Thread*)deCalloc(sizeof(Thread));
101 Thread* thread = (Thread*)threadpt
[all...]
/external/llvm/lib/Support/
H A DThreading.cpp48 pthread_t Thread; local
61 if (::pthread_create(&Thread, &Attr, ExecuteOnThread_Dispatch, &Info) != 0)
65 ::pthread_join(Thread, nullptr);
/external/compiler-rt/lib/tsan/benchmarks/
H A Dvts_many_threads_bench.cc54 void *Thread(void *arg) { function
61 printf("Thread %ld go!\n", idx);
67 printf("Thread %ld done\n", idx);
101 int status = pthread_create(&t[i], 0, Thread, (void*)i);
/external/deqp/framework/common/
H A DtcuThreadUtil.cpp21 * \brief Thread test utilities
122 void Operation::execute (Thread& thread)
165 Thread::Thread (int seed) function in class:tcu::ThreadUtil::Thread
171 Thread::~Thread (void)
179 deUint8* Thread::getDummyData (size_t size)
189 void Thread::addOperation (Operation* operation)
194 void Thread::run (void)
237 void Thread
[all...]
/external/valgrind/main/drd/tests/
H A Dannotate_smart_pointer.cpp75 class Thread class
78 Thread() : m_thread(INVALID_HANDLE_VALUE) { } function in class:Thread
79 ~Thread() { }
136 class Thread class
139 Thread() : m_tid() { } function in class:Thread
140 ~Thread() { }
315 std::vector<Thread> T(nthreads);
318 for (std::vector<Thread>::iterator q = T.begin(); q != T.end(); q++)
327 for (std::vector<Thread>::iterator q = T.begin(); q != T.end(); q++)
/external/chromium_org/tools/telemetry/telemetry/timeline/
H A Dthread.py10 class Thread(event_container.TimelineEventContainer): class in inherits:event_container.TimelineEventContainer
11 ''' A Thread stores all the trace events collected for a particular
17 super(Thread, self).__init__('thread %s' % tid, parent=process)
114 * thread_timestamp: Thread specific clock (scheduled) timestamp of the
/external/valgrind/main/helgrind/
H A Dhg_lock_n_thread.h68 be as small as possible. Freeing Thread structures makes the
74 core's ThreadId associated with this Thread whilst it is alive.
80 Thread structure. */
98 Thread; typedef in typeref:struct:_Thread
101 Thread* get_admin_threads ( void );
165 Bool HG_(is_sane_Thread) ( Thread* thr );
/external/chromium_org/third_party/libjingle/source/talk/base/
H A Dthread.cc58 Thread* Thread::Current() {
92 Thread *ThreadManager::CurrentThread() {
93 return static_cast<Thread *>(pthread_getspecific(key_));
96 void ThreadManager::SetCurrentThread(Thread *thread) {
114 Thread *ThreadManager::CurrentThread() {
115 return static_cast<Thread *>(TlsGetValue(key_));
118 void ThreadManager::SetCurrentThread(Thread *thread) {
123 Thread *ThreadManager::WrapCurrentThread() {
124 Thread* resul
145 Thread::Thread(SocketServer* ss) function in class:talk_base::Thread
[all...]
H A Dthread.h49 class Thread;
58 Thread* CurrentThread();
59 void SetCurrentThread(Thread* thread);
63 // If there already *is* a Thread object corresponding to this thread,
64 // this method will return that. Otherwise it creates a new Thread
74 Thread *WrapCurrentThread();
91 Thread *thread;
106 virtual void Run(Thread* thread) = 0;
115 // WARNING! SUBCLASSES MUST CALL Stop() IN THEIR DESTRUCTORS! See ~Thread().
117 class Thread class in namespace:talk_base
[all...]
/external/chromium_org/third_party/webrtc/base/
H A Dthread.cc41 Thread* Thread::Current() {
75 Thread *ThreadManager::CurrentThread() {
76 return static_cast<Thread *>(pthread_getspecific(key_));
79 void ThreadManager::SetCurrentThread(Thread *thread) {
97 Thread *ThreadManager::CurrentThread() {
98 return static_cast<Thread *>(TlsGetValue(key_));
101 void ThreadManager::SetCurrentThread(Thread *thread) {
106 Thread *ThreadManager::WrapCurrentThread() {
107 Thread* resul
128 Thread::Thread(SocketServer* ss) function in class:rtc::Thread
[all...]
/external/chromium_org/tools/cygprofile/
H A Dcygprofile.cc145 // base::Thread has non-trivial dependencies on e.g. AtExitManager which makes
147 class Thread { class in namespace:cygprofile
149 Thread(const base::Closure& thread_callback) function in class:cygprofile::Thread
151 CHECK_EQ(0, pthread_create(&handle_, NULL, &Thread::EntryPoint, this));
154 ~Thread() {
166 Thread* const instance = reinterpret_cast<Thread*>(data);
174 DISALLOW_COPY_AND_ASSIGN(Thread);
267 scoped_ptr<Thread> flush_thread;
292 new Thread(bas
[all...]
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/timeline/
H A DTracingModel.js252 * @param {?WebInspector.TracingModel.Thread} thread
398 * @return {!WebInspector.TracingModel.Thread}
404 thread = new WebInspector.TracingModel.Thread(this, id);
441 * @return {!Array.<!WebInspector.TracingModel.Thread>}
457 WebInspector.TracingModel.Thread = function(process, id)
461 this._setName("Thread " + id);
467 WebInspector.TracingModel.Thread.prototype = {
/external/chromium_org/third_party/leveldatabase/
H A Denv_chromium.cc758 class Thread : public ::base::PlatformThread::Delegate { class in namespace:leveldb_env
760 Thread(void (*function)(void* arg), void* arg) function in class:leveldb_env::Thread
766 virtual ~Thread() {}
821 new Thread(function, arg); // Will self-delete.
/external/chromium_org/third_party/sqlite/src/src/
H A Dtest4.c27 typedef struct Thread Thread; typedef in typeref:struct:Thread
28 struct Thread { struct
32 void (*xOp)(Thread*); /* next operation to do */
55 static Thread threadset[N_THREAD];
62 Thread *p = (Thread*)pArg;
162 static void thread_wait(Thread *p){
197 static void stop_thread(Thread *p){
440 static void do_compile(Thread *
[all...]

Completed in 956 milliseconds

12345