HomeSort by relevance Sort by last modified time
    Searched defs:thread (Results 251 - 275 of 684) sorted by null

<<11121314151617181920>>

  /external/chromium_org/sandbox/win/tests/validation_tests/
commands.cc 126 HANDLE thread = ::OpenThread(THREAD_QUERY_INFORMATION, local
130 if (NULL == thread) {
137 ::CloseHandle(thread);
205 // Returns true if the current's thread desktop is the interactive desktop.
  /external/chromium_org/third_party/libjingle/source/talk/base/
thread.h 49 class Thread;
58 Thread* CurrentThread();
59 void SetCurrentThread(Thread* thread);
61 // Returns a thread object with its thread_ ivar set
62 // to whatever the OS uses to represent the 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; member in struct:talk_base::_SendMessage
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/p2p/base/
p2ptransportchannel.h 169 talk_base::Thread* thread() { return worker_thread_; } function in class:cricket::P2PTransportChannel
228 talk_base::Thread *worker_thread_;
relayserver.h 37 #include "talk/base/thread.h"
52 // Creates a server, which will use this thread to post messages to itself.
53 explicit RelayServer(talk_base::Thread* thread);
56 talk_base::Thread* thread() { return thread_; } function in class:cricket::RelayServer
95 talk_base::Thread* thread_;
135 // Handle messages in our worker thread.
  /external/chromium_org/third_party/libxml/src/
threads.c 142 * - globalkey used for per-thread data
152 static __declspec(thread) xmlGlobalState tlstate;
153 static __declspec(thread) int tlstate_inited = 0;
464 /* If another thread successfully recorded its critical
466 * allocated by this thread. */
490 /* If another thread successfully recorded its critical
492 * allocated by this thread. */
542 * Per thread global state handling *
553 * @state: a thread global state
555 * xmlFreeGlobalState() is called when a thread terminates with a non-NUL
600 HANDLE thread; member in struct:_xmlGlobalStateCleanupHelperParams
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/os/
os_thread.h 30 * Thread, mutex, condition variable, barrier, semaphore and
31 * thread-specific data functions.
59 pipe_thread thread; local
65 ret = pthread_create( &thread, NULL, routine, param );
69 return thread;
72 static INLINE int pipe_thread_wait( pipe_thread thread )
74 return pthread_join( thread, NULL );
77 static INLINE int pipe_thread_destroy( pipe_thread thread )
79 return pthread_detach( thread );
144 static INLINE int pipe_thread_wait( pipe_thread thread )
    [all...]
  /external/chromium_org/third_party/webrtc/base/
thread.h 32 class Thread;
41 Thread* CurrentThread();
42 void SetCurrentThread(Thread* thread);
44 // Returns a thread object with its thread_ ivar set
45 // to whatever the OS uses to represent the thread.
46 // If there already *is* a Thread object corresponding to this thread,
47 // this method will return that. Otherwise it creates a new Thread
57 Thread *WrapCurrentThread()
74 Thread *thread; member in struct:rtc::_SendMessage
    [all...]
  /external/chromium_org/third_party/webrtc/modules/utility/source/
file_recorder_impl.cc 463 ThreadWrapper* thread = _thread; local
470 if(thread->Stop())
472 delete thread;
  /external/chromium_org/v8/test/cctest/
test-lockers.cc 59 class KangarooThread : public v8::internal::Thread {
62 : Thread("KangarooThread"),
99 // Migrates an isolate from one thread to another
149 class ThreadWithSemaphore : public i::Thread {
152 : Thread(joinable_thread->name_),
386 LockIsolateAndCalculateFibSharedContextThread thread(isolate_, context);
389 thread.Start();
390 thread.Join();
439 LockIsolateAndCalculateFibSharedContextThread thread(isolate_, context);
442 thread.Start()
484 i::SmartPointer<LockIsolateAndCalculateFibSharedContextThread> thread; local
    [all...]
  /external/compiler-rt/lib/asan/
asan_thread.cc 12 // Thread-related code.
34 thread = args->thread;
35 thread->set_context(this);
40 thread = 0;
58 // a single thread.
63 // thread before all TSD destructors will be called for it.
82 AsanThread *thread = (AsanThread*)MmapOrDie(size, __func__); local
83 thread->start_routine_ = start_routine;
84 thread->arg_ = arg
    [all...]
asan_thread.h 32 // These objects are created for every thread and are never deleted,
33 // so we can find them by tid even if the thread is long dead.
41 thread(0) {
46 AsanThread *thread; member in class:__asan::AsanThreadContext
55 // AsanThread are stored in TSD and destroyed when the thread dies.
62 void Init(); // Should be called from the thread itself.
100 // True is this thread is currently unwinding stack (i.e. collecting a stack
136 explicit ScopedUnwinding(AsanThread *t) : thread(t) {
139 ~ScopedUnwinding() { thread->setUnwinding(false); }
142 AsanThread *thread; member in class:__asan::ScopedUnwinding
146 AsanThread *thread; member in struct:__asan::CreateThreadContextArgs
    [all...]
  /external/deqp/framework/delibs/deutil/
deTimer.c 275 /* Generic thread-based implementation for OSes that lack proper timers. */
295 deThread thread; /*!< Thread. */ member in struct:deTimerThread_s
306 deTimerThread* curThread; /*!< Current timer thread. */
311 deTimerThread* thread = (deTimerThread*)arg; local
320 deMutex_lock(thread->lock);
322 if (thread->state == TIMERSTATE_SINGLE && numCallbacks > 0)
325 thread->state = TIMERSTATE_DISABLED;
328 else if (thread->state == TIMERSTATE_DISABLED)
331 deMutex_unlock(thread->lock)
355 deTimerThread* thread = (deTimerThread*)deCalloc(sizeof(deTimerThread)); local
    [all...]
  /external/fio/
verify.h 65 unsigned char thread; member in struct:vhdr_meta
  /external/iputils/ninfod/
ninfod_core.c 446 DEBUG(LOG_DEBUG, "%s(): thread=%ld\n", __func__, pthread_self());
448 DEBUG(LOG_DEBUG, "%s(): thread=%ld => %d\n", __func__, pthread_self(), ret);
523 pthread_t thread; local
682 if (pthread_create(&thread, &pattr, ni_send_thread, p)) {
  /external/libxml2/
threads.c 142 * - globalkey used for per-thread data
153 static __declspec(thread) xmlGlobalState tlstate;
154 static __declspec(thread) int tlstate_inited = 0;
465 /* If another thread successfully recorded its critical
467 * allocated by this thread. */
491 /* If another thread successfully recorded its critical
493 * allocated by this thread. */
543 * Per thread global state handling *
554 * @state: a thread global state
556 * xmlFreeGlobalState() is called when a thread terminates with a non-NUL
601 HANDLE thread; member in struct:_xmlGlobalStateCleanupHelperParams
    [all...]
  /external/linux-tools-perf/perf-3.12.0/tools/perf/
builtin-inject.c 209 struct thread *thread; local
214 thread = machine__findnew_thread(machine, sample->pid, sample->pid);
215 if (thread == NULL) {
221 thread__find_addr_map(thread, machine, cpumode, MAP__FUNCTION,
  /external/linux-tools-perf/perf-3.12.0/tools/perf/tests/
code-reading.c 16 #include "thread.h"
137 struct thread *thread, struct machine *machine,
149 thread__find_addr_map(thread, machine, cpumode, MAP__FUNCTION, addr,
252 struct thread *thread; local
260 thread = machine__findnew_thread(machine, sample.pid, sample.pid);
261 if (!thread) {
268 return read_object_code(sample.ip, READLEN, cpumode, thread, machine,
382 struct thread *thread local
    [all...]
hists_link.c 9 #include "thread.h"
89 struct thread *thread; local
91 thread = machine__findnew_thread(machine, fake_threads[i].pid,
93 if (thread == NULL)
96 thread__set_comm(thread, fake_threads[i].comm);
153 struct thread *thread; member in struct:sample
229 fake_common_samples[k].thread = al.thread;
    [all...]
  /external/lldb/source/Commands/
CommandObjectFrame.cpp 45 #include "lldb/Target/Thread.h"
64 "List information about the currently selected frame in the current thread.",
155 "Select a frame by index from within the current thread and make it the current frame.",
193 // No need to check "thread" for validity as eFlagRequiresThread ensures it is valid
194 Thread *thread = m_exe_ctx.GetThreadPtr(); local
200 frame_idx = thread->GetSelectedFrameIndex ();
225 const uint32_t num_frames = thread->GetStackFrameCount();
251 frame_idx = thread->GetSelectedFrameIndex ();
264 bool success = thread->SetSelectedFrameByIndexNoisily (frame_idx, result.GetOutputStream())
    [all...]
  /external/lldb/source/Plugins/ABI/MacOSX-arm/
ABIMacOSX_arm.cpp 25 #include "lldb/Target/Thread.h"
197 ABIMacOSX_arm::PrepareTrivialCall (Thread &thread,
208 RegisterContext *reg_ctx = thread.GetRegisterContext().get();
262 TargetSP target_sp (thread.CalculateTarget());
311 ABIMacOSX_arm::GetArgumentValues (Thread &thread,
317 ExecutionContext exe_ctx (thread.shared_from_this());
323 RegisterContext *reg_ctx = thread.GetRegisterContext().get();
523 Thread *thread = frame_sp->GetThread().get(); local
    [all...]
  /external/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/
AppleObjCRuntime.cpp 34 #include "lldb/Target/Thread.h"
117 Thread *thread = exe_ctx.GetThreadPtr(); local
118 if (thread == NULL)
121 thread = exe_ctx.GetThreadPtr();
123 if (thread)
125 exe_ctx.SetFrameSP(thread->GetSelectedFrame());
278 AppleObjCRuntime::GetStepThroughTrampolinePlan (Thread &thread, bool stop_others)
282 thread_plan_sp = m_objc_trampoline_handler_ap->GetStepThroughDispatchPlan (thread, stop_others)
    [all...]
  /external/lldb/tools/darwin-threads/
examine-threads.c 113 thread.
114 Gives you the suspend count; thread state; user time; system time; sleep time; etc.
119 get_thread_basic_info (thread_t thread)
124 kr = thread_info (thread, THREAD_BASIC_INFO,
128 printf ("Error - unable to get basic thread info for a thread\n");
134 /* Get the thread identifier info (thread_identifier_info_data_t)
135 about a given thread.
136 Gives you the system-wide unique thread number; the pthread identifier number
140 get_thread_identifier_info (thread_t thread)
271 thread_t thread; local
    [all...]
  /external/lzma/C/
LzFindMt.h 29 CThread thread; member in struct:_CMtSync
MtCoder.h 1 /* MtCoder.h -- Multi-thread Coder
13 CThread thread; member in struct:__anon30484
59 CLoopThread thread; member in struct:__anon30486
  /external/mesa3d/src/gallium/auxiliary/os/
os_thread.h 30 * Thread, mutex, condition variable, barrier, semaphore and
31 * thread-specific data functions.
59 pipe_thread thread; local
65 ret = pthread_create( &thread, NULL, routine, param );
69 return thread;
72 static INLINE int pipe_thread_wait( pipe_thread thread )
74 return pthread_join( thread, NULL );
77 static INLINE int pipe_thread_destroy( pipe_thread thread )
79 return pthread_detach( thread );
144 static INLINE int pipe_thread_wait( pipe_thread thread )
    [all...]

Completed in 1409 milliseconds

<<11121314151617181920>>