Home
last modified time | relevance | path

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

12345678910

/external/llvm/utils/KillTheDoctor/
DKillTheDoctor.cpp373 DEBUG_EVENT DebugEvent; in main() local
374 std::memset(&DebugEvent, 0, sizeof(DebugEvent)); in main()
425 success = WaitForDebugEvent(&DebugEvent, TimeLeft); in main()
443 switch(DebugEvent.dwDebugEventCode) { in main()
448 ProcessIDToHandle[DebugEvent.dwProcessId] = in main()
449 DebugEvent.u.CreateProcessInfo.hProcess; in main()
450 ::CloseHandle(DebugEvent.u.CreateProcessInfo.hFile); in main()
458 if (DebugEvent.dwProcessId == ProcessInfo.dwProcessId) in main()
459 return DebugEvent.u.ExitProcess.dwExitCode; in main()
463 ProcessIDToHandle.find(DebugEvent.dwProcessId); in main()
[all …]
/external/v8/test/mjsunit/
Ddebug-compile-event.js63 if (event == Debug.DebugEvent.BeforeCompile ||
64 event == Debug.DebugEvent.AfterCompile ||
65 event == Debug.DebugEvent.CompileError) {
67 if (event == Debug.DebugEvent.BeforeCompile) {
69 } else if (event == Debug.DebugEvent.AfterCompile) {
100 if (event == Debug.DebugEvent.AfterCompile) {
Ddebug-event-listener.js35 if (event == Debug.DebugEvent.Break ||
36 event == Debug.DebugEvent.Exception)
57 assertTrue(lastDebugEvent.event == Debug.DebugEvent.Exception);
70 assertTrue(lastDebugEvent.event == Debug.DebugEvent.Break);
Ddebug-set-script-source.js37 if (event == Debug.DebugEvent.BeforeCompile) {
40 } else if (event == Debug.DebugEvent.AfterCompile) {
Ddebug-negative-break-points.js17 if (event == Debug.DebugEvent.Break) {
19 } else if (event == Debug.DebugEvent.Exception) {
Ddebug-clearbreakpointgroup.js66 if (event == Debug.DebugEvent.Break) {
75 } else if (event == Debug.DebugEvent.AfterCompile) {
Ddebug-evaluate-recursive.js72 if (event == Debug.DebugEvent.Break)
110 if (event == Debug.DebugEvent.Break)
Ddebug-setbreakpoint.js71 if (event == Debug.DebugEvent.Break) {
184 if (event == Debug.DebugEvent.Break)
Ddebug-step-end-of-script.js11 if (event != Debug.DebugEvent.Break) return;
Ddebug-stack-check-position.js12 if (event != Debug.DebugEvent.Break) return;
/external/v8/src/debug/
Ddebug.h251 static MessageImpl NewEvent(DebugEvent event,
257 static MessageImpl NewResponse(DebugEvent event,
267 virtual DebugEvent GetEvent() const;
278 DebugEvent event,
286 DebugEvent event_; // Debug event causing the break.
298 EventDetailsImpl(DebugEvent event,
303 virtual DebugEvent GetEvent() const;
312 DebugEvent event_; // Debug event causing the break.
596 Handle<Script> script, v8::DebugEvent type);
606 void CallEventCallback(v8::DebugEvent event,
[all …]
/external/v8/test/mjsunit/regress/
Dregress-crbug-517592.js19 if (event == Debug.DebugEvent.Break) break_count++;
20 if (event != Debug.DebugEvent.AfterCompile) return;
Dregress-crbug-432493.js19 if (event == Debug.DebugEvent.Break) {
23 } else if (event = Debug.DebugEvent.Exception) {
Dregress-269.js33 if (event == Debug.DebugEvent.Break) {
Dregress-crbug-487289.js11 if (event != Debug.DebugEvent.Break) return;
Dregress-crbug-491943.js11 if (event != Debug.DebugEvent.Break) return;
Dregress-147497.js33 if (event == Debug.DebugEvent.Break) {
Dregress-crbug-605581.js11 if (event != Debug.DebugEvent.Break) return;
/external/v8/include/
Dv8-debug.h16 enum DebugEvent { enum
48 virtual DebugEvent GetEvent() const = 0;
99 virtual DebugEvent GetEvent() const = 0;
/external/v8/test/mjsunit/es6/debug-promises/
Dthrow-uncaught-uncaught.js28 if (event == Debug.DebugEvent.AsyncTaskEvent) return;
30 if (event == Debug.DebugEvent.Exception) {
/external/v8/test/mjsunit/es6/
Ddebug-evaluate-blockscopes.js53 if (event == Debug.DebugEvent.Break) {
94 if (event == Debug.DebugEvent.Break) {
/external/v8/test/mjsunit/es6/regress/
Dregress-3280.js12 if (event == Debug.DebugEvent.Break) {
/external/v8/test/mjsunit/ignition/
Ddebugger-statement.js16 if (event != Debug.DebugEvent.Break) return;
Ddebug-scope-on-return.js12 if (event == Debug.DebugEvent.Break) {
/external/v8/test/mjsunit/bugs/
Dbug-2337.js40 if (event == Debug.DebugEvent.ScriptCollected) {

12345678910