Home
last modified time | relevance | path

Searched refs:DebugEvent (Results 1 – 6 of 6) sorted by relevance

/external/llvm/utils/KillTheDoctor/
DKillTheDoctor.cpp371 DEBUG_EVENT DebugEvent; in main() local
372 std::memset(&DebugEvent, 0, sizeof(DebugEvent)); in main()
423 success = WaitForDebugEvent(&DebugEvent, TimeLeft); in main()
441 switch(DebugEvent.dwDebugEventCode) { in main()
446 ProcessIDToHandle[DebugEvent.dwProcessId] = in main()
447 DebugEvent.u.CreateProcessInfo.hProcess; in main()
448 ::CloseHandle(DebugEvent.u.CreateProcessInfo.hFile); in main()
456 if (DebugEvent.dwProcessId == ProcessInfo.dwProcessId) in main()
457 return DebugEvent.u.ExitProcess.dwExitCode; in main()
461 ProcessIDToHandle.find(DebugEvent.dwProcessId); in main()
[all …]
/external/swiftshader/third_party/LLVM/utils/KillTheDoctor/
DKillTheDoctor.cpp411 DEBUG_EVENT DebugEvent; in main() local
412 std::memset(&DebugEvent, 0, sizeof(DebugEvent)); in main()
463 success = WaitForDebugEvent(&DebugEvent, TimeLeft); in main()
480 switch(DebugEvent.dwDebugEventCode) { in main()
485 ProcessIDToHandle[DebugEvent.dwProcessId] = in main()
486 DebugEvent.u.CreateProcessInfo.hProcess; in main()
487 ::CloseHandle(DebugEvent.u.CreateProcessInfo.hFile); in main()
495 if (DebugEvent.dwProcessId == ProcessInfo.dwProcessId) in main()
496 return DebugEvent.u.ExitProcess.dwExitCode; in main()
500 ProcessIDToHandle.find(DebugEvent.dwProcessId); in main()
[all …]
/external/v8/include/
Dv8-debug.h16 enum DebugEvent { enum
46 virtual DebugEvent GetEvent() const = 0;
96 virtual DebugEvent GetEvent() const = 0;
/external/v8/src/debug/
Ddebug.h468 Handle<Script> script, v8::DebugEvent type);
472 void ProcessCompileEvent(v8::DebugEvent event, Handle<Script> script);
473 void ProcessDebugEvent(v8::DebugEvent event, Handle<JSObject> event_data);
622 void ProcessDebugEvent(v8::DebugEvent event, Handle<JSObject> event_data);
623 virtual void ProcessDebugEvent(v8::DebugEvent event,
635 void ProcessDebugEvent(v8::DebugEvent event, Handle<JSObject> event_data,
652 EventDetails(DebugEvent event, Handle<JSObject> exec_state,
654 virtual DebugEvent GetEvent() const;
663 DebugEvent event_; // Debug event causing the break.
670 void ProcessDebugEvent(v8::DebugEvent event, Handle<JSObject> event_data,
Ddebug.js34 Debug.DebugEvent = { Break: 1,
870 return Debug.DebugEvent.Break;
913 return Debug.DebugEvent.Exception;
Ddebug.cc1651 v8::DebugEvent type) { in MakeCompileEvent()
1988 void Debug::ProcessCompileEvent(v8::DebugEvent event, Handle<Script> script) { in ProcessCompileEvent()
2275 v8::DebugEvent event = is_compile_error ? v8::CompileError : v8::AfterCompile; in ScriptCompiled()
2312 void LegacyDebugDelegate::ProcessDebugEvent(v8::DebugEvent event, in ProcessDebugEvent()
2334 void JavaScriptDebugDelegate::ProcessDebugEvent(v8::DebugEvent event, in ProcessDebugEvent()
2356 NativeDebugDelegate::EventDetails::EventDetails(DebugEvent event, in EventDetails()
2365 DebugEvent NativeDebugDelegate::EventDetails::GetEvent() const { in GetEvent()
2392 void NativeDebugDelegate::ProcessDebugEvent(v8::DebugEvent event, in ProcessDebugEvent()