Home
last modified time | relevance | path

Searched refs:ContextSwitcher (Results 1 – 4 of 4) sorted by relevance

/external/v8/src/
Dv8threads.cc143 v8::internal::ContextSwitcher::StartPreemption(every_n_ms); in StartPreemption()
148 v8::internal::ContextSwitcher::StopPreemption(); in StopPreemption()
410 ContextSwitcher::ContextSwitcher(Isolate* isolate, int every_n_ms) in ContextSwitcher() function in v8::internal::ContextSwitcher
420 void ContextSwitcher::StartPreemption(int every_n_ms) { in StartPreemption()
425 isolate->set_context_switcher(new ContextSwitcher(isolate, every_n_ms)); in StartPreemption()
437 void ContextSwitcher::StopPreemption() { in StopPreemption()
455 void ContextSwitcher::Run() { in Run()
464 void ContextSwitcher::PreemptionReceived() { in PreemptionReceived()
Dv8threads.h143 class ContextSwitcher: public Thread {
156 ContextSwitcher(Isolate* isolate, int every_n_ms);
Disolate.h57 class ContextSwitcher; variable
855 ContextSwitcher* context_switcher() { return context_switcher_; } in context_switcher()
857 void set_context_switcher(ContextSwitcher* switcher) { in set_context_switcher()
1189 ContextSwitcher* context_switcher_;
Dexecution.cc791 ContextSwitcher::PreemptionReceived(); in RuntimePreempt()