| /src/external/gpl3/gdb.old/dist/gdb/guile/lib/ |
| gdb.scm | 1 ;; Scheme side of the gdb module. 5 ;; This file is part of GDB. 24 (define-module (gdb) function 25 ;; The version of the (gdb) module as (major minor). 30 ;; This is not the GDB version on purpose. This version tracks the Scheme 31 ;; gdb module version. 39 ;; to the GDB build system. Still, I think it's worth it. 47 gdb-version 314 ;; with-gdb-output-to-port, with-gdb-error-to-port are in experimental.scm [all...] |
| /src/external/gpl3/gdb/dist/gdb/guile/lib/ |
| gdb.scm | 1 ;; Scheme side of the gdb module. 5 ;; This file is part of GDB. 24 (define-module (gdb) function 25 ;; The version of the (gdb) module as (major minor). 30 ;; This is not the GDB version on purpose. This version tracks the Scheme 31 ;; gdb module version. 39 ;; to the GDB build system. Still, I think it's worth it. 47 gdb-version 314 ;; with-gdb-output-to-port, with-gdb-error-to-port are in experimental.scm [all...] |
| /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.python/ |
| py-mi-objfile-gdb.py | 16 # This file is part of the GDB testsuite. 18 import gdb namespace 24 gdb.execute("set width 101", to_string=True) 26 gdb.execute("list -q main")
|
| py-autoloaded-pretty-printers-in-newobjfile-event.py | 16 # This file is part of the GDB testsuite. It tests that python pretty 23 import gdb namespace 27 assert isinstance(event, gdb.NewObjFileEvent) 42 gdb.parse_and_eval("all_good = 1") 51 gdb.events.new_objfile.connect(new_objfile_handler)
|
| py-breakpoint-create-fail.py | 16 import gdb namespace 19 class MyBP(gdb.Breakpoint): 27 bp = MyBP("does_not_exist", gdb.BP_WATCHPOINT)
|
| /src/external/gpl3/gdb.old/dist/gdbsupport/ |
| byte-vector.h | 3 This file is part of GDB. 23 namespace gdb { namespace 33 gdb::byte_vector buf (some_large_size); 39 gdb::byte_vector buf (some_initial_size, 0); 45 gdb::byte_vector objects constructed with an initial size like: 47 gdb::byte_vector buf (some_size); 58 using byte_vector = gdb::def_vector<gdb_byte>; 59 using char_vector = gdb::def_vector<char>; 61 } /* namespace gdb */
|
| def-vector.h | 3 This file is part of GDB. 24 namespace gdb { namespace 32 = std::vector<T, gdb::default_init_allocator<T>>; 34 } /* namespace gdb */
|
| unordered_map.h | 3 This file is part of GDB. 23 namespace gdb namespace 35 } /* namespace gdb */
|
| unordered_set.h | 3 This file is part of GDB. 23 namespace gdb namespace 34 } /* namespace gdb */
|
| task-group.h | 5 This file is part of GDB. 25 namespace gdb namespace 59 } /* namespace gdb */
|
| gdb-checked-static-cast.h | 3 This file is part of GDB. 23 namespace gdb namespace 67 template<typename T, typename V, typename = gdb::Requires<std::is_reference<T>>>
|
| /src/external/gpl3/gdb/dist/gdbsupport/ |
| byte-vector.h | 3 This file is part of GDB. 23 namespace gdb { namespace 33 gdb::byte_vector buf (some_large_size); 39 gdb::byte_vector buf (some_initial_size, 0); 45 gdb::byte_vector objects constructed with an initial size like: 47 gdb::byte_vector buf (some_size); 58 using byte_vector = gdb::def_vector<gdb_byte>; 59 using char_vector = gdb::def_vector<char>; 61 } /* namespace gdb */
|
| def-vector.h | 3 This file is part of GDB. 24 namespace gdb { namespace 32 = std::vector<T, gdb::default_init_allocator<T>>; 34 } /* namespace gdb */
|
| unordered_map.h | 3 This file is part of GDB. 23 namespace gdb namespace 35 } /* namespace gdb */
|
| unordered_set.h | 3 This file is part of GDB. 23 namespace gdb namespace 34 } /* namespace gdb */
|
| /src/external/gpl3/gdb.old/dist/gdb/ |
| gdb-code-style.el | 0 ;;; gdb-code-style.el --- code style checker for GDB contributors 8 ;; Keywords: GDB 27 ;; (load-file "~/$(GDB_SOURCE)/gdb/gdb-code-style.el") 34 (defun gdb-fun-name-hook () 38 (add-hook 'c-mode-common-hook 'gdb-fun-name-hook) 41 (defun gdb-include-hook () 46 (add-hook 'c-mode-common-hook 'gdb-include-hook) 51 (defun gdb-markup-hook ( [all...] |
| auto-load.h | 0 /* GDB routines for supporting auto-loaded scripts. 5 This file is part of GDB. 28 namespace gdb { namespace 32 } /* namespace gdb */ 51 extern gdb::observers::token auto_load_new_objfile_observer_token; 77 /* Return true if auto-loading gdb scripts is enabled. */
|
| observable.h | 5 This file is part of GDB. 36 namespace gdb namespace 47 gdb notifies all normal_stop observers when the inferior execution 64 /* The executable being debugged by GDB in PSPACE has changed: The user 71 file does appear to have changed, so GDB reloaded it, e.g. if the user 77 /* gdb has just connected to an inferior. For 'run', gdb calls this 79 instruction. For 'attach' and 'core', gdb calls this observer 100 when gdb calls this observer, the library's symbols probably 105 Note when gdb calls this observer, the library's symbols have no [all...] |
| /src/external/gpl3/gdb.old/dist/gdb/guile/lib/gdb/ |
| experimental.scm | 6 ;; This file is part of GDB. 22 ;; E.g., (gdb experimental ports), etc. 24 (define-module (gdb experimental) function 25 #:use-module (gdb)) 28 (define-public with-gdb-output-to-port (@@ (gdb) %with-gdb-output-to-port)) 29 (define-public with-gdb-error-to-port (@@ (gdb) %with-gdb-error-to-port) [all...] |
| /src/external/gpl3/gdb/dist/gdb/ |
| auto-load.h | 0 /* GDB routines for supporting auto-loaded scripts. 5 This file is part of GDB. 28 namespace gdb { namespace 32 } /* namespace gdb */ 51 extern gdb::observers::token auto_load_new_objfile_observer_token; 77 /* Return true if auto-loading gdb scripts is enabled. */
|
| gdb-code-style.el | 0 ;;; gdb-code-style.el --- code style checker for GDB contributors 8 ;; Keywords: GDB 27 ;; (load-file "~/$(GDB_SOURCE)/gdb/gdb-code-style.el") 34 (defun gdb-fun-name-hook () 38 (add-hook 'c-mode-common-hook 'gdb-fun-name-hook) 41 (defun gdb-include-hook () 46 (add-hook 'c-mode-common-hook 'gdb-include-hook) 51 (defun gdb-markup-hook ( [all...] |
| observable.h | 5 This file is part of GDB. 36 namespace gdb namespace 47 gdb notifies all normal_stop observers when the inferior execution 64 /* The executable being debugged by GDB in PSPACE has changed: The user 71 file does appear to have changed, so GDB reloaded it, e.g. if the user 77 /* gdb has just connected to an inferior. For 'run', gdb calls this 79 instruction. For 'attach' and 'core', gdb calls this observer 100 when gdb calls this observer, the library's symbols probably 105 The SILENT argument indicates that GDB doesn't wish to notify the CL [all...] |
| /src/external/gpl3/gdb/dist/gdb/guile/lib/gdb/ |
| experimental.scm | 6 ;; This file is part of GDB. 22 ;; E.g., (gdb experimental ports), etc. 24 (define-module (gdb experimental) function 25 #:use-module (gdb)) 28 (define-public with-gdb-output-to-port (@@ (gdb) %with-gdb-output-to-port)) 29 (define-public with-gdb-error-to-port (@@ (gdb) %with-gdb-error-to-port) [all...] |
| /src/external/gpl3/gdb/dist/gdb/python/lib/gdb/function/ |
| as_string.py | 16 import gdb namespace 19 class _AsString(gdb.Function):
|
| /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.mi/ |
| mi-py-modify-bp.py | 16 import gdb namespace 18 bps = gdb.breakpoints()
|