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

  /art/runtime/
thread_state.h 24 enum ThreadState {
52 std::ostream& operator<<(std::ostream& os, const ThreadState& rhs);
  /external/v8/src/
v8threads.cc 110 lazily_archived_thread_state_->LinkInto(ThreadState::FREE_LIST);
132 ThreadState* state = per_thread->thread_state();
148 state->LinkInto(ThreadState::FREE_LIST);
177 ThreadState::ThreadState(ThreadManager* thread_manager)
187 ThreadState::~ThreadState() {
192 void ThreadState::AllocateSpace() {
197 void ThreadState::Unlink() {
203 void ThreadState::LinkInto(List list)
    [all...]
v8threads.h 14 class ThreadState {
17 ThreadState* Next();
38 explicit ThreadState(ThreadManager* thread_manager);
39 ~ThreadState();
46 ThreadState* next_;
47 ThreadState* previous_;
90 ThreadState* FirstThreadStateInUse();
91 ThreadState* GetFreeThreadState();
97 void DeleteThreadStateList(ThreadState* anchor);
104 ThreadState* lazily_archived_thread_state_
    [all...]
  /external/webrtc/webrtc/modules/remote_bitrate_estimator/test/
bwe_test_logging.h 301 struct ThreadState {
305 typedef std::map<uint32_t, ThreadState> ThreadMap;
  /frameworks/base/libs/hwui/debug/
nullegl.cpp 29 } ThreadState;
42 ThreadState* getThreadState() {
43 ThreadState* ptr;
45 if ((ptr = (ThreadState*) pthread_getspecific(ThreadStateKey)) == NULL) {
46 ptr = (ThreadState*) calloc(1, sizeof(ThreadState));
129 ThreadState* state = getThreadState();
  /frameworks/native/libs/binder/
BufferedTextOutput.cpp 85 struct BufferedTextOutput::ThreadState
94 BufferedTextOutput::ThreadState* BufferedTextOutput::getThreadState()
96 ThreadState* ts = (ThreadState*) thread_store_get( &tls );
98 ts = new ThreadState;
105 delete ((ThreadState*)st);
267 ThreadState* ts = getThreadState();
  /external/valgrind/coregrind/
pub_core_threadstate.h 35 // PURPOSE: This module defines the ThreadState type and the
405 ThreadState;
415 extern ThreadState *VG_(threads);
435 /* Get the ThreadState for a particular thread */
436 extern ThreadState *VG_(get_ThreadState) ( ThreadId tid );
  /external/compiler-rt/lib/tsan/rtl/
tsan_rtl.cc 48 THREADLOCAL char cur_thread_placeholder[sizeof(ThreadState)] ALIGNED(64);
110 ThreadState::ThreadState(Context *ctx, int tid, int unique_id, u64 epoch,
308 void Initialize(ThreadState *thr) {
379 int Finalize(ThreadState *thr) {
430 void ForkBefore(ThreadState *thr, uptr pc) {
435 void ForkParentAfter(ThreadState *thr, uptr pc) {
440 void ForkChildAfter(ThreadState *thr, uptr pc) {
464 void GrowShadowStack(ThreadState *thr) {
477 u32 CurrentStackId(ThreadState *thr, uptr pc)
    [all...]
tsan_rtl.h 329 struct ThreadState {
338 // QUESTION: can we can squeeze this into ThreadState::Fast?
339 // E.g. ThreadState::Fast is a 44-bit, 32 are taken by synch_epoch and 12 are
407 explicit ThreadState(Context *ctx, int tid, int unique_id, u64 epoch,
415 ThreadState *cur_thread();
420 INLINE ThreadState *cur_thread() {
421 return reinterpret_cast<ThreadState *>(&cur_thread_placeholder);
431 ThreadState *thr;
558 void ObtainCurrentStack(ThreadState *thr, uptr toppc, StackTraceTy *stack) {
574 void ALWAYS_INLINE StatInc(ThreadState *thr, StatType typ, u64 n = 1)
    [all...]

Completed in 418 milliseconds