HomeSort by relevance Sort by last modified time
    Searched refs:Interruptor (Results 1 - 5 of 5) sorted by null

  /external/chromium_org/third_party/WebKit/Source/platform/heap/glue/
MessageLoopInterruptor.h 39 class MessageLoopInterruptor : public ThreadState::Interruptor {
  /external/chromium_org/third_party/WebKit/Source/platform/heap/
ThreadState.h 358 // - register an Interruptor that can interrupt long running loops that have no calls to safePoint and
359 // are not wrapped in a SafePointScope (e.g. Interruptor for JavaScript code)
410 // can provide an interruptor object which would allow GC
413 class PLATFORM_EXPORT Interruptor {
415 virtual ~Interruptor() { }
417 // Request the interruptor to interrupt the thread and
431 void addInterruptor(Interruptor*);
432 void removeInterruptor(Interruptor*);
453 const Vector<Interruptor*>& interruptors() const { return m_interruptors; }
569 Vector<Interruptor*> m_interruptors
    [all...]
ThreadState.cpp 139 const Vector<ThreadState::Interruptor*>& interruptors = (*it)->interruptors();
180 const Vector<ThreadState::Interruptor*>& interruptors = (*it)->interruptors();
875 void ThreadState::addInterruptor(Interruptor* interruptor)
881 m_interruptors.append(interruptor);
885 void ThreadState::removeInterruptor(Interruptor* interruptor)
891 size_t index = m_interruptors.find(interruptor);
897 void ThreadState::Interruptor::onInterrupted()
  /external/chromium_org/third_party/WebKit/Source/web/
WebKit.cpp 87 static WebCore::ThreadState::Interruptor* s_messageLoopInterruptor = 0;
88 static WebCore::ThreadState::Interruptor* s_isolateInterruptor = 0;
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/
V8Binding.h     [all...]

Completed in 407 milliseconds