Home
last modified time | relevance | path

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

123456

/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.js51 if (event == Debug.DebugEvent.BeforeCompile ||
52 event == Debug.DebugEvent.AfterCompile ||
53 event == Debug.DebugEvent.CompileError) {
55 if (event == Debug.DebugEvent.BeforeCompile) {
57 } else if (event == Debug.DebugEvent.AfterCompile) {
88 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-clearbreakpointgroup.js62 if (event == Debug.DebugEvent.Break) {
71 } else if (event == Debug.DebugEvent.AfterCompile) {
Ddebug-stepin-builtin-callback.js38 if (event == Debug.DebugEvent.Break) {
125 if (event == Debug.DebugEvent.Break) {
Ddebug-evaluate-recursive.js72 if (event == Debug.DebugEvent.Break)
110 if (event == Debug.DebugEvent.Break)
Ddebug-stepin-positions.js44 if (event == Debug.DebugEvent.Break ||
45 event == Debug.DebugEvent.Exception) {
Ddebug-setbreakpoint.js71 if (event == Debug.DebugEvent.Break) {
186 if (event == Debug.DebugEvent.Break)
/external/v8/src/
Ddebug.h205 static MessageImpl NewEvent(DebugEvent event,
211 static MessageImpl NewResponse(DebugEvent event,
221 virtual DebugEvent GetEvent() const;
232 DebugEvent event,
240 DebugEvent event_; // Debug event causing the break.
252 EventDetailsImpl(DebugEvent event,
257 virtual DebugEvent GetEvent() const;
264 DebugEvent event_; // Debug event causing the break.
523 Handle<Script> script, v8::DebugEvent type);
535 void CallEventCallback(v8::DebugEvent event,
[all …]
/external/v8/include/
Dv8-debug.h16 enum DebugEvent { enum
51 virtual DebugEvent GetEvent() const = 0;
102 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) {
Dthrow-caught-uncaught.js29 assertTrue(event != Debug.DebugEvent.Exception);
Dthrow-caught-late.js27 assertTrue(event != Debug.DebugEvent.Exception);
Dreject-caught-late.js27 assertTrue(event != Debug.DebugEvent.Exception);
/external/v8/test/mjsunit/es6/
Ddebug-stepin-collections-foreach.js13 if (event == Debug.DebugEvent.Break) {
75 if (event == Debug.DebugEvent.Break) {
/external/v8/test/mjsunit/regress/
Dregress-269.js33 if (event == Debug.DebugEvent.Break) {
Dregress-147497.js33 if (event == Debug.DebugEvent.Break) {
Dregress-crbug-405922.js11 if (event == Debug.DebugEvent.Break) {
Dregress-102153.js38 if (event == Debug.DebugEvent.Break) {
Dregress-crbug-259300.js35 if (event == Debug.DebugEvent.Break) {
Dregress-1586.js50 if (event == Debug.DebugEvent.Break) {
/external/v8/test/mjsunit/es6/regress/
Dregress-3280.js12 if (event == Debug.DebugEvent.Break) {
/external/v8/test/mjsunit/bugs/
Dbug-2337.js40 if (event == Debug.DebugEvent.ScriptCollected) {
/external/v8/test/mjsunit/harmony/
Ddebug-evaluate-blockscopes.js55 if (event == Debug.DebugEvent.Break) {

123456