Home
last modified time | relevance | path

Searched refs:DebuggerInfo (Results 1 – 4 of 4) sorted by relevance

/third_party/quickjs/
Ddebugger.c90 static JSValue DBG_ReadMsg(DebuggerInfo *debuggerInfo) in DBG_ReadMsg()
108 static void DBG_SendMsg(DebuggerInfo *debuggerInfo, JSValue msgBody) in DBG_SendMsg()
160 static void DBG_SendStopMsg(DebuggerInfo *debuggerInfo, const char *stopReason) in DBG_SendStopMsg()
184 static void DBG_SendResponseMsg(DebuggerInfo *debuggerInfo, JSValue request, JSValue body) in DBG_SendResponseMsg()
206 static void DBG_SetBreakpoints(DebuggerInfo *debuggerInfo, JSValue breakpoints) in DBG_SetBreakpoints()
237 static void DBG_CotinueProcess(DebuggerInfo *debuggerInfo, JSValue msg, const uint8_t *pc) in DBG_CotinueProcess()
256 static void DBG_StackTraceProcess(DebuggerInfo *debuggerInfo, JSValue msg, const uint8_t *curPc) in DBG_StackTraceProcess()
314 static void DBG_ScopesProcess(DebuggerInfo *debuggerInfo, JSValue msg) in DBG_ScopesProcess()
343 static void DBG_SetStepOverToDebugger(DebuggerInfo *debuggerInfo, JSValue msg, const uint8_t *pc) in DBG_SetStepOverToDebugger()
363 static void DBG_SetStepOutToDebugger(DebuggerInfo *debuggerInfo, JSValue msg, const uint8_t *pc) in DBG_SetStepOutToDebugger()
[all …]
Ddebugger.h85 typedef struct DebuggerInfo { struct
94 } DebuggerInfo; typedef
103 DebuggerInfo *JS_GetDebuggerInfo(JSContext *cx);
108 void DBG_FreeSources(JSContext *cx, DebuggerInfo *debuggerInfo);
Dmessage_server.cpp219 auto debugger_info = (DebuggerInfo*)args; in DBG_StartAgent()
Dquickjs.c429 DebuggerInfo *debugger_info;
2150 ctx->debugger_info = js_malloc_rt(rt, sizeof(DebuggerInfo)); in JS_NewContextRaw()
18711 DebuggerInfo *debugger_info = JS_GetDebuggerInfo(ctx); in JS_Call()
54006 DebuggerInfo *debugger_info = JS_GetDebuggerInfo(ctx); in JS_JudgeConditionBreakPoint()
54060 DebuggerInfo *debugger_info = JS_GetDebuggerInfo(ctx); in JS_HitBreakpoint()
54222 DebuggerInfo *JS_GetDebuggerInfo(JSContext *cx) in JS_GetDebuggerInfo()