Home | History | Annotate | Download | only in src

Lines Matching refs:thread_local_

222   static bool InDebugger() { return thread_local_.debugger_entry_ != NULL; }
274 return thread_local_.break_frame_id_;
276 static int break_id() { return thread_local_.break_id_; }
278 static bool StepInActive() { return thread_local_.step_into_fp_ != 0; }
283 static Address step_in_fp() { return thread_local_.step_into_fp_; }
284 static Address* step_in_fp_addr() { return &thread_local_.step_into_fp_; }
286 static bool StepOutActive() { return thread_local_.step_out_fp_ != 0; }
287 static Address step_out_fp() { return thread_local_.step_out_fp_; }
290 return thread_local_.debugger_entry_;
293 thread_local_.debugger_entry_ = entry;
298 return (thread_local_.pending_interrupts_ & what) != 0;
303 thread_local_.pending_interrupts_ |= what;
308 thread_local_.pending_interrupts_ &= ~static_cast<int>(what);
331 return reinterpret_cast<Address*>(&thread_local_.after_break_target_);
458 static ThreadLocal thread_local_;