Home
last modified time | relevance | path

Searched refs:debug_context (Results 1 – 25 of 372) sorted by relevance

12345678910>>...15

/dports/lang/rust/rustc-1.58.1-src/compiler/rustc_codegen_llvm/src/debuginfo/
H A Dcreate_scope_map.rs24 debug_context: &mut FunctionDebugContext<&'ll DIScope, &'ll DILocation>, in compute_mir_scopes()
44 make_mir_scope(cx, instance, mir, fn_dbg_scope, &has_variables, debug_context, scope); in compute_mir_scopes()
54 debug_context: &mut FunctionDebugContext<&'ll DIScope, &'ll DILocation>, in make_mir_scope()
57 if debug_context.scopes[scope].dbg_scope.is_some() { in make_mir_scope()
63 make_mir_scope(cx, instance, mir, fn_dbg_scope, has_variables, debug_context, parent); in make_mir_scope()
64 debug_context.scopes[parent] in make_mir_scope()
68 debug_context.scopes[scope] = DebugScope { in make_mir_scope()
80 debug_context.scopes[scope] = parent_scope; in make_mir_scope()
117 debug_context.scopes[scope] = DebugScope { in make_mir_scope()
H A Dnamespace.rs3 use super::utils::{debug_context, DIB};
21 if let Some(&scope) = debug_context(cx).namespace_map.borrow().get(&def_id) { in item_namespace()
46 debug_context(cx).namespace_map.borrow_mut().insert(def_id, scope); in item_namespace()
H A Dmetadata.rs704 let type_map = &debug_context(cx).type_map; in type_metadata()
1032 debug_context: &CrateDebugContext<'ll, '_>, in compile_unit_metadata()
1089 debug_context.builder, in compile_unit_metadata()
1100 debug_context.builder, in compile_unit_metadata()
1131 debug_context.llcontext, in compile_unit_metadata()
1138 debug_context.llmod, in compile_unit_metadata()
1148 debug_context.llcontext, in compile_unit_metadata()
1153 debug_context.llmod, in compile_unit_metadata()
1991 let unique_type_id = debug_context(cx) in describe_enum_variant()
2115 debug_context(cx) in prepare_enum_metadata()
[all …]
/dports/emulators/dgen-sdl/dgen-sdl-1.33/
H A Ddebug.cpp264 debug_context = DBG_CONTEXT_M68K; in debug_init()
1087 if (debug_context != DBG_CONTEXT_M68K){ in debug_cmd_watch()
1392 if (debug_context == DBG_CONTEXT_M68K) in debug_cmd_dis()
1420 if (debug_context == DBG_CONTEXT_M68K) in debug_cmd_dis()
1602 switch (debug_context) { in debug_cmd_reg()
1703 if (debug_context == DBG_CONTEXT_M68K) in debug_cmd_break()
1757 debug_context = ctx; in debug_cmd_cpu()
1781 if (debug_context == DBG_CONTEXT_M68K) in debug_cmd_step()
1916 if (debug_context == DBG_CONTEXT_M68K) in debug_cmd_minus_watch()
1983 if (debug_context == DBG_CONTEXT_M68K) in debug_cmd_minus_break()
[all …]
/dports/games/fs2open/fs2open.github.com-release_21_4_1/lib/libRocket/Source/Debugger/
H A DPlugin.cpp50 debug_context = NULL; in Plugin()
94 if (debug_context != NULL && in SetContext()
97 debug_context->UnloadDocument(hook_element); in SetContext()
123 if (debug_context != NULL) in SetContext()
125 debug_context->RemoveEventListener("click", info_element, true); in SetContext()
126 debug_context->RemoveEventListener("mouseover", info_element, true); in SetContext()
138 debug_context = context; in SetContext()
162 debug_context != NULL) in Render()
164 for (int i = 0; i < debug_context->GetNumDocuments(); ++i) in Render()
166 Core::ElementDocument* document = debug_context->GetDocument(i); in Render()
[all …]
/dports/devel/gdb761/gdb-7.6.1/gdb/
H A Ddec-thread.c38 pthreadDebugContext_t debug_context; variable
245 &debug_context); in enable_dec_thread()
268 pthreadDebugContextDestroy (debug_context); in disable_dec_thread()
349 res = pthreadDebugThdSeqInit (debug_context, &thread); in update_dec_thread_list()
353 res = pthreadDebugThdGetInfo (debug_context, thread, &info); in update_dec_thread_list()
367 res = pthreadDebugThdSeqNext (debug_context, &thread); in update_dec_thread_list()
369 pthreadDebugThdSeqDestroy (debug_context); in update_dec_thread_list()
509 res = pthreadDebugThdGetReg (debug_context, tid, &regs); in dec_thread_get_regsets()
517 res = pthreadDebugThdGetFreg (debug_context, tid, &fregs); in dec_thread_get_regsets()
575 res = pthreadDebugThdSetReg (debug_context, tid, &regs); in dec_thread_set_regsets()
[all …]
/dports/devel/avr-gdb/gdb-7.3.1/gdb/
H A Ddec-thread.c38 pthreadDebugContext_t debug_context; variable
245 &debug_context); in enable_dec_thread()
268 pthreadDebugContextDestroy (debug_context); in disable_dec_thread()
349 res = pthreadDebugThdSeqInit (debug_context, &thread); in update_dec_thread_list()
353 res = pthreadDebugThdGetInfo (debug_context, thread, &info); in update_dec_thread_list()
367 res = pthreadDebugThdSeqNext (debug_context, &thread); in update_dec_thread_list()
369 pthreadDebugThdSeqDestroy (debug_context); in update_dec_thread_list()
509 res = pthreadDebugThdGetReg (debug_context, tid, &regs); in dec_thread_get_regsets()
517 res = pthreadDebugThdGetFreg (debug_context, tid, &fregs); in dec_thread_get_regsets()
575 res = pthreadDebugThdSetReg (debug_context, tid, &regs); in dec_thread_set_regsets()
[all …]
/dports/emulators/citra/citra-ac98458e0/src/citra_qt/debugger/graphics/
H A Dgraphics_breakpoints.cpp14 BreakPointModel::BreakPointModel(std::shared_ptr<Pica::DebugContext> debug_context, QObject* parent) in BreakPointModel() argument
15 : QAbstractListModel(parent), context_weak(debug_context), in BreakPointModel()
16 at_breakpoint(debug_context->at_breakpoint), in BreakPointModel()
17 active_breakpoint(debug_context->active_breakpoint) {} in BreakPointModel()
141 std::shared_ptr<Pica::DebugContext> debug_context, QWidget* parent) in GraphicsBreakPointsWidget() argument
143 debug_context) { in GraphicsBreakPointsWidget()
150 breakpoint_model = new BreakPointModel(debug_context, this); in GraphicsBreakPointsWidget()
H A Dgraphics_breakpoint_observer.cpp8 BreakPointObserverDock::BreakPointObserverDock(std::shared_ptr<Pica::DebugContext> debug_context, in BreakPointObserverDock() argument
10 : QDockWidget(title, parent), BreakPointObserver(debug_context) { in BreakPointObserverDock()
/dports/emulators/citra-qt5/citra-ac98458e0/src/citra_qt/debugger/graphics/
H A Dgraphics_breakpoints.cpp14 BreakPointModel::BreakPointModel(std::shared_ptr<Pica::DebugContext> debug_context, QObject* parent) in BreakPointModel() argument
15 : QAbstractListModel(parent), context_weak(debug_context), in BreakPointModel()
16 at_breakpoint(debug_context->at_breakpoint), in BreakPointModel()
17 active_breakpoint(debug_context->active_breakpoint) {} in BreakPointModel()
141 std::shared_ptr<Pica::DebugContext> debug_context, QWidget* parent) in GraphicsBreakPointsWidget() argument
143 debug_context) { in GraphicsBreakPointsWidget()
150 breakpoint_model = new BreakPointModel(debug_context, this); in GraphicsBreakPointsWidget()
H A Dgraphics_breakpoint_observer.cpp8 BreakPointObserverDock::BreakPointObserverDock(std::shared_ptr<Pica::DebugContext> debug_context, in BreakPointObserverDock() argument
10 : QDockWidget(title, parent), BreakPointObserver(debug_context) { in BreakPointObserverDock()
/dports/emulators/citra/citra-ac98458e0/src/video_core/debug_utils/
H A Ddebug_utils.h64 BreakPointObserver(std::shared_ptr<DebugContext> debug_context) in BreakPointObserver() argument
65 : context_weak(debug_context) { in BreakPointObserver()
66 std::unique_lock lock{debug_context->breakpoint_mutex}; in BreakPointObserver()
67 debug_context->breakpoint_observers.push_back(this); in BreakPointObserver()
/dports/emulators/citra-qt5/citra-ac98458e0/src/video_core/debug_utils/
H A Ddebug_utils.h64 BreakPointObserver(std::shared_ptr<DebugContext> debug_context) in BreakPointObserver() argument
65 : context_weak(debug_context) { in BreakPointObserver()
66 std::unique_lock lock{debug_context->breakpoint_mutex}; in BreakPointObserver()
67 debug_context->breakpoint_observers.push_back(this); in BreakPointObserver()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/crashpad/crashpad/snapshot/mac/
H A Dthread_snapshot_mac.cc66 &process_reader_thread.debug_context.d64); in Initialize()
76 &process_reader_thread.debug_context.d32); in Initialize()
87 &process_reader_thread.debug_context); in Initialize()
/dports/devel/geany-plugin-vimode/geany-plugins-1.38/scope/src/
H A Dconterm.c216 static GtkTextView *debug_context; variable
263 gtk_text_view_scroll_mark_onscreen(debug_context, gtk_text_buffer_get_insert(context)); in context_output()
330 g_signal_emit_by_name(debug_context, "copy-clipboard"); in on_console_copy()
342 g_signal_emit_by_name(debug_context, "select-all"); in on_console_select_all()
458 context_apply_config(GTK_WIDGET(debug_context)); in conterm_apply_config()
584 debug_context = GTK_TEXT_VIEW(console); in conterm_init()
587 context = gtk_text_view_get_buffer(debug_context); in conterm_init()
/dports/devel/geany-plugin-workbench/geany-plugins-1.38/scope/src/
H A Dconterm.c216 static GtkTextView *debug_context; variable
263 gtk_text_view_scroll_mark_onscreen(debug_context, gtk_text_buffer_get_insert(context)); in context_output()
330 g_signal_emit_by_name(debug_context, "copy-clipboard"); in on_console_copy()
342 g_signal_emit_by_name(debug_context, "select-all"); in on_console_select_all()
458 context_apply_config(GTK_WIDGET(debug_context)); in conterm_apply_config()
584 debug_context = GTK_TEXT_VIEW(console); in conterm_init()
587 context = gtk_text_view_get_buffer(debug_context); in conterm_init()
/dports/devel/geany-plugin-xmlsnippets/geany-plugins-1.38/scope/src/
H A Dconterm.c216 static GtkTextView *debug_context; variable
263 gtk_text_view_scroll_mark_onscreen(debug_context, gtk_text_buffer_get_insert(context)); in context_output()
330 g_signal_emit_by_name(debug_context, "copy-clipboard"); in on_console_copy()
342 g_signal_emit_by_name(debug_context, "select-all"); in on_console_select_all()
458 context_apply_config(GTK_WIDGET(debug_context)); in conterm_apply_config()
584 debug_context = GTK_TEXT_VIEW(console); in conterm_init()
587 context = gtk_text_view_get_buffer(debug_context); in conterm_init()
/dports/devel/geany-plugins-l10n/geany-plugins-1.38/scope/src/
H A Dconterm.c216 static GtkTextView *debug_context; variable
263 gtk_text_view_scroll_mark_onscreen(debug_context, gtk_text_buffer_get_insert(context)); in context_output()
330 g_signal_emit_by_name(debug_context, "copy-clipboard"); in on_console_copy()
342 g_signal_emit_by_name(debug_context, "select-all"); in on_console_select_all()
458 context_apply_config(GTK_WIDGET(debug_context)); in conterm_apply_config()
584 debug_context = GTK_TEXT_VIEW(console); in conterm_init()
587 context = gtk_text_view_get_buffer(debug_context); in conterm_init()
/dports/devel/geany-plugin-prj/geany-plugins-1.38/scope/src/
H A Dconterm.c216 static GtkTextView *debug_context; variable
263 gtk_text_view_scroll_mark_onscreen(debug_context, gtk_text_buffer_get_insert(context)); in context_output()
330 g_signal_emit_by_name(debug_context, "copy-clipboard"); in on_console_copy()
342 g_signal_emit_by_name(debug_context, "select-all"); in on_console_select_all()
458 context_apply_config(GTK_WIDGET(debug_context)); in conterm_apply_config()
584 debug_context = GTK_TEXT_VIEW(console); in conterm_init()
587 context = gtk_text_view_get_buffer(debug_context); in conterm_init()
/dports/devel/geany-plugin-tableconvert/geany-plugins-1.38/scope/src/
H A Dconterm.c216 static GtkTextView *debug_context; variable
263 gtk_text_view_scroll_mark_onscreen(debug_context, gtk_text_buffer_get_insert(context)); in context_output()
330 g_signal_emit_by_name(debug_context, "copy-clipboard"); in on_console_copy()
342 g_signal_emit_by_name(debug_context, "select-all"); in on_console_select_all()
458 context_apply_config(GTK_WIDGET(debug_context)); in conterm_apply_config()
584 debug_context = GTK_TEXT_VIEW(console); in conterm_init()
587 context = gtk_text_view_get_buffer(debug_context); in conterm_init()
/dports/devel/geany-plugin-spellcheck/geany-plugins-1.38/scope/src/
H A Dconterm.c216 static GtkTextView *debug_context; variable
263 gtk_text_view_scroll_mark_onscreen(debug_context, gtk_text_buffer_get_insert(context)); in context_output()
330 g_signal_emit_by_name(debug_context, "copy-clipboard"); in on_console_copy()
342 g_signal_emit_by_name(debug_context, "select-all"); in on_console_select_all()
458 context_apply_config(GTK_WIDGET(debug_context)); in conterm_apply_config()
584 debug_context = GTK_TEXT_VIEW(console); in conterm_init()
587 context = gtk_text_view_get_buffer(debug_context); in conterm_init()
/dports/devel/geany-plugin-utilslib/geany-plugins-1.38/scope/src/
H A Dconterm.c216 static GtkTextView *debug_context; variable
263 gtk_text_view_scroll_mark_onscreen(debug_context, gtk_text_buffer_get_insert(context)); in context_output()
330 g_signal_emit_by_name(debug_context, "copy-clipboard"); in on_console_copy()
342 g_signal_emit_by_name(debug_context, "select-all"); in on_console_select_all()
458 context_apply_config(GTK_WIDGET(debug_context)); in conterm_apply_config()
584 debug_context = GTK_TEXT_VIEW(console); in conterm_init()
587 context = gtk_text_view_get_buffer(debug_context); in conterm_init()
/dports/devel/geany-plugin-pairtaghighlighter/geany-plugins-1.38/scope/src/
H A Dconterm.c216 static GtkTextView *debug_context; variable
263 gtk_text_view_scroll_mark_onscreen(debug_context, gtk_text_buffer_get_insert(context)); in context_output()
330 g_signal_emit_by_name(debug_context, "copy-clipboard"); in on_console_copy()
342 g_signal_emit_by_name(debug_context, "select-all"); in on_console_select_all()
458 context_apply_config(GTK_WIDGET(debug_context)); in conterm_apply_config()
584 debug_context = GTK_TEXT_VIEW(console); in conterm_init()
587 context = gtk_text_view_get_buffer(debug_context); in conterm_init()
/dports/devel/geany-plugin-projectorganizer/geany-plugins-1.38/scope/src/
H A Dconterm.c216 static GtkTextView *debug_context; variable
263 gtk_text_view_scroll_mark_onscreen(debug_context, gtk_text_buffer_get_insert(context)); in context_output()
330 g_signal_emit_by_name(debug_context, "copy-clipboard"); in on_console_copy()
342 g_signal_emit_by_name(debug_context, "select-all"); in on_console_select_all()
458 context_apply_config(GTK_WIDGET(debug_context)); in conterm_apply_config()
584 debug_context = GTK_TEXT_VIEW(console); in conterm_init()
587 context = gtk_text_view_get_buffer(debug_context); in conterm_init()
/dports/devel/geany-plugin-pohelper/geany-plugins-1.38/scope/src/
H A Dconterm.c216 static GtkTextView *debug_context; variable
263 gtk_text_view_scroll_mark_onscreen(debug_context, gtk_text_buffer_get_insert(context)); in context_output()
330 g_signal_emit_by_name(debug_context, "copy-clipboard"); in on_console_copy()
342 g_signal_emit_by_name(debug_context, "select-all"); in on_console_select_all()
458 context_apply_config(GTK_WIDGET(debug_context)); in conterm_apply_config()
584 debug_context = GTK_TEXT_VIEW(console); in conterm_init()
587 context = gtk_text_view_get_buffer(debug_context); in conterm_init()

12345678910>>...15