Lines Matching refs:Thread
2484 // in any thread. Returns the length of the string.
2497 // Can be used in any thread. Requires string length as an input.
4553 // constructor. The Wait() call blocks a thread until it is called for the
4719 // This is the debugger thread, that executes no v8 calls except
4721 class MessageQueueDebuggerThread : public v8::internal::Thread {
4724 : Thread(isolate, "MessageQueueDebuggerThread") { }
4773 // Main thread compiles and runs source_1
4787 // Main thread compiles and runs source_2.
4798 // Main thread compiles and runs source_3.
4821 // Main thread continues running source_3 to end, waits for this thread.
4825 // This thread runs the v8 engine.
4966 * occupying the v8 thread by a break command from the
4967 * debugger thread. It then changes the value of a
4973 class V8Thread : public v8::internal::Thread {
4976 : Thread(isolate, "V8Thread") { }
4980 class DebuggerThread : public v8::internal::Thread {
4983 : Thread(isolate, "DebuggerThread") { }
5080 class BreakpointsV8Thread : public v8::internal::Thread {
5083 : Thread(isolate, "BreakpointsV8Thread") { }
5087 class BreakpointsDebuggerThread : public v8::internal::Thread {
5091 : Thread(isolate, "BreakpointsDebuggerThread"),
5214 // v8 thread initializes, runs source_1
5221 // V8 thread starts compiling source_2.
5224 // Commands 1 through 3 run, thread continues.
5225 // v8 thread runs source_2 to breakpoint in cat().
5232 // V8 thread hits breakpoint in dog().
5650 class HostDispatchV8Thread : public v8::internal::Thread {
5653 : Thread(isolate, "HostDispatchV8Thread") { }
5657 class HostDispatchDebuggerThread : public v8::internal::Thread {
5660 : Thread(isolate, "HostDispatchDebuggerThread") { }
5716 // v8 thread initializes, runs source_1
5722 // v8 thread starts compiling source_2.
5751 /* In this test, the V8 thread waits for a message from the debug thread.
5752 * The DebugMessageDispatchHandler is executed from the debugger thread
5753 * which signals the V8 thread to wake up.
5756 class DebugMessageDispatchV8Thread : public v8::internal::Thread {
5759 : Thread(isolate, "DebugMessageDispatchV8Thread") { }
5763 class DebugMessageDispatchDebuggerThread : public v8::internal::Thread {
5766 : Thread(isolate, "DebugMessageDispatchDebuggerThread") { }
5867 class DebuggerAgentProtocolServerThread : public i::Thread {
5870 : Thread(isolate, "DebuggerAgentProtocolServerThread"),