Searched refs:DebugEvent (Results 1 - 25 of 76) sorted by relevance

1234

/external/v8/test/mjsunit/
H A 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);
H A Ddebug-set-script-source.js37 if (event == Debug.DebugEvent.BeforeCompile) {
40 } else if (event == Debug.DebugEvent.AfterCompile) {
H A Ddebug-compile-event.js50 if (event == Debug.DebugEvent.BeforeCompile ||
51 event == Debug.DebugEvent.AfterCompile) {
53 if (event == Debug.DebugEvent.BeforeCompile) {
H A Ddebug-constructor.js35 if (event == Debug.DebugEvent.Break)
H A Ddebug-mirror-cache.js49 if (event == Debug.DebugEvent.Break)
H A Ddebug-step-stub-callfunction.js35 if (event == Debug.DebugEvent.Break) {
H A Ddebug-stepin-constructor.js35 if (event == Debug.DebugEvent.Break) {
H A Ddebug-stepnext-do-while.js37 if (event == Debug.DebugEvent.Break) {
H A Ddebug-compile-event-newfunction.js36 if (event == Debug.DebugEvent.AfterCompile) {
H A Ddebug-break-inline.js46 if (event == Debug.DebugEvent.Break) {
H A Ddebug-evaluate-bool-constructor.js37 if (event == Debug.DebugEvent.Break) {
H A Ddebug-evaluate-with.js38 if (event == Debug.DebugEvent.Break)
H A Ddebug-ignore-breakpoints.js36 if (event == Debug.DebugEvent.Break) {
H A Ddebug-step-2.js42 if (event == Debug.DebugEvent.Break) {
H A Ddebug-step-3.js43 if (event == Debug.DebugEvent.Break) {
H A Ddebug-step.js39 if (event == Debug.DebugEvent.Break) {
H A Ddebug-stepin-builtin.js43 if (event == Debug.DebugEvent.Break) {
H A Ddebug-stepout-to-builtin.js43 if (event == Debug.DebugEvent.Break) {
/external/v8/test/mjsunit/regress/
H A Dregress-269.js33 if (event == Debug.DebugEvent.Break) {
H A Dregress-102153.js38 if (event == Debug.DebugEvent.Break) {
H A Dregress-1586.js50 if (event == Debug.DebugEvent.Break) {
H A Dregress-crbug-107996.js38 if (event == Debug.DebugEvent.Break) {
/external/v8/test/mjsunit/harmony/
H A Ddebug-evaluate-blockscopes.js56 if (event == Debug.DebugEvent.Break) {
/external/llvm/utils/KillTheDoctor/
H A DKillTheDoctor.cpp365 DEBUG_EVENT DebugEvent; local
366 std::memset(&DebugEvent, 0, sizeof(DebugEvent));
417 success = WaitForDebugEvent(&DebugEvent, TimeLeft);
434 switch(DebugEvent.dwDebugEventCode) {
439 ProcessIDToHandle[DebugEvent.dwProcessId] =
440 DebugEvent.u.CreateProcessInfo.hProcess;
441 ::CloseHandle(DebugEvent.u.CreateProcessInfo.hFile);
449 if (DebugEvent.dwProcessId == ProcessInfo.dwProcessId)
450 return DebugEvent
[all...]
/external/v8/include/
H A Dv8-debug.h73 enum DebugEvent { enum in namespace:v8
106 virtual DebugEvent GetEvent() const = 0;
155 virtual DebugEvent GetEvent() const = 0;
192 * (enum DebugEvent)
197 typedef void (*EventCallback)(DebugEvent event,

Completed in 172 milliseconds

1234