HomeSort by: relevance | last modified time | path
    Searched defs:gdb (Results 1 - 25 of 79) sorted by relevancy

1 2 3 4

  /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.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/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 */
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>>>
task-group.h 5 This file is part of GDB.
25 namespace gdb namespace
59 } /* namespace gdb */
array-view.h 3 This file is part of GDB.
42 void function (gdb::array_view<A> as);
68 namespace gdb { namespace
83 using DecayedConvertible = gdb::And<IsDecayedT<U>,
144 typename = Requires<gdb::Not<IsDecayedT<Container>>>,
219 void copy (gdb::array_view<U> src, gdb::array_view<T> dest)
234 operator== (const gdb::array_view<T> &lhs, const gdb::array_view<T> &rhs)
250 operator!= (const gdb::array_view<T> &lhs, const gdb::array_view<T> &rhs
    [all...]
gdb_binary_search.h 5 This file is part of GDB.
26 namespace gdb { namespace
57 } /* namespace gdb */
gdb_splay_tree.h 0 /* GDB wrapper for splay trees.
5 This file is part of GDB.
25 namespace gdb { namespace
35 } /* namespace gdb */
39 typedef std::unique_ptr<splay_tree_s, gdb::splay_tree_deleter>
  /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 */
eintr.h 5 This file is part of GDB.
25 namespace gdb namespace
46 ssize_t ret = gdb::handle_eintr (-1, ::write, pipe[1], "+", 1);
69 } /* 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>>>
task-group.h 5 This file is part of GDB.
25 namespace gdb namespace
59 } /* namespace gdb */
  /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 Note when gdb calls this observer, the library's symbols have no
    [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...]
support.scm 5 ;; This file is part of GDB.
20 (define-module (gdb support)) function
  /src/external/gpl3/gdb.old/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 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...]

Completed in 37 milliseconds

1 2 3 4