HomeSort by relevance Sort by last modified time
    Searched defs:ThreadState (Results 1 - 12 of 12) sorted by null

  /art/runtime/
thread_state.h 22 enum ThreadState {
  /external/chromium_org/v8/src/
v8threads.cc 115 lazily_archived_thread_state_->LinkInto(ThreadState::FREE_LIST);
137 ThreadState* state = per_thread->thread_state();
153 state->LinkInto(ThreadState::FREE_LIST);
182 ThreadState::ThreadState(ThreadManager* thread_manager)
192 ThreadState::~ThreadState() {
197 void ThreadState::AllocateSpace() {
202 void ThreadState::Unlink() {
208 void ThreadState::LinkInto(List list)
    [all...]
v8threads.h 12 class ThreadState {
15 ThreadState* Next();
36 explicit ThreadState(ThreadManager* thread_manager);
37 ~ThreadState();
44 ThreadState* next_;
45 ThreadState* previous_;
88 ThreadState* FirstThreadStateInUse();
89 ThreadState* GetFreeThreadState();
95 void DeleteThreadStateList(ThreadState* anchor);
102 ThreadState* lazily_archived_thread_state_
    [all...]
  /external/chromium_org/third_party/webrtc/modules/remote_bitrate_estimator/test/
bwe_test_logging.h 203 struct ThreadState {
207 typedef std::map<uint32_t, ThreadState> ThreadMap;
  /frameworks/native/libs/binder/
BufferedTextOutput.cpp 82 struct BufferedTextOutput::ThreadState
91 BufferedTextOutput::ThreadState* BufferedTextOutput::getThreadState()
93 ThreadState* ts = (ThreadState*) thread_store_get( &tls );
95 ts = new ThreadState;
102 delete ((ThreadState*)st);
264 ThreadState* ts = getThreadState();
  /external/chromium_org/third_party/WebKit/Source/platform/heap/
ThreadState.cpp 32 #include "platform/heap/ThreadState.h"
103 WTF::ThreadSpecific<ThreadState*>* ThreadState::s_threadSpecific = 0;
104 uint8_t ThreadState::s_mainThreadStateStorage[sizeof(ThreadState)];
105 SafePointBarrier* ThreadState::s_safePointBarrier = 0;
106 bool ThreadState::s_inGC = false;
121 typedef void (*PushAllRegistersCallback)(SafePointBarrier*, ThreadState*, intptr_t*);
122 extern "C" void pushAllRegisters(SafePointBarrier*, ThreadState*, PushAllRegistersCallback);
132 ASSERT(ThreadState::current()->isAtSafePoint())
    [all...]
ThreadState.h 270 class PLATFORM_EXPORT ThreadState {
271 WTF_MAKE_NONCOPYABLE(ThreadState);
290 explicit NoSweepScope(ThreadState* state) : m_state(state)
301 ThreadState* m_state;
306 typedef HashSet<ThreadState*> AttachedThreadStateSet;
325 // Associate ThreadState object with the current thread. After this
330 // Disassociate attached ThreadState from the current thread. The thread
334 static ThreadState* current() { return **s_threadSpecific; }
335 static ThreadState* mainThreadState()
337 return reinterpret_cast<ThreadState*>(s_mainThreadStateStorage)
    [all...]
  /external/lldb/include/lldb/Target/
Thread.h     [all...]
  /external/valgrind/main/coregrind/
pub_core_threadstate.h 35 // PURPOSE: This module defines the ThreadState type and the
367 ThreadState;
377 extern ThreadState VG_(threads)[VG_N_THREADS];
397 /* Get the ThreadState for a particular thread */
398 extern ThreadState *VG_(get_ThreadState) ( ThreadId tid );
  /external/chromium_org/third_party/leveldatabase/src/db/
db_bench.cc 288 struct ThreadState {
294 ThreadState(int index)
441 void (Benchmark::*method)(ThreadState*) = NULL;
535 ThreadState* thread;
536 void (Benchmark::*method)(ThreadState*);
542 ThreadState* thread = arg->thread;
568 void (Benchmark::*method)(ThreadState*)) {
580 arg[i].thread = new ThreadState(i);
608 void Crc32c(ThreadState* thread) {
627 void AcquireLoad(ThreadState* thread)
    [all...]
  /external/compiler-rt/lib/tsan/rtl/
tsan_rtl.cc 47 THREADLOCAL char cur_thread_placeholder[sizeof(ThreadState)] ALIGNED(64);
95 ThreadState::ThreadState(Context *ctx, int tid, int unique_id, u64 epoch,
282 void Initialize(ThreadState *thr) {
341 int Finalize(ThreadState *thr) {
391 void ForkBefore(ThreadState *thr, uptr pc) {
396 void ForkParentAfter(ThreadState *thr, uptr pc) {
401 void ForkChildAfter(ThreadState *thr, uptr pc) {
425 void GrowShadowStack(ThreadState *thr) {
438 u32 CurrentStackId(ThreadState *thr, uptr pc)
    [all...]
tsan_rtl.h 319 struct ThreadState {
328 // QUESTION: can we can squeeze this into ThreadState::Fast?
329 // E.g. ThreadState::Fast is a 44-bit, 32 are taken by synch_epoch and 12 are
391 explicit ThreadState(Context *ctx, int tid, int unique_id, u64 epoch,
400 INLINE ThreadState *cur_thread() {
401 return reinterpret_cast<ThreadState *>(&cur_thread_placeholder);
409 ThreadState *thr;
531 void ALWAYS_INLINE StatInc(ThreadState *thr, StatType typ, u64 n = 1) {
535 void ALWAYS_INLINE StatSet(ThreadState *thr, StatType typ, u64 n) {
548 void ForkBefore(ThreadState *thr, uptr pc)
    [all...]

Completed in 376 milliseconds