| /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 24 gdb.execute("set width 101", to_string=True) 26 gdb.execute("list -q main")
|
| py-auto-load-chaining-f2.o-gdb.py | 21 print("Current objfile is: %s" % gdb.current_objfile().filename)
|
| py-auto-load-chaining-f1.o-gdb.py | 23 print("Current objfile is: %s" % gdb.current_objfile().filename) 27 filename = gdb.current_objfile().filename 29 r2 = gdb.lookup_global_symbol("region_2").value() 30 gdb.execute("add-symbol-file %s 0x%x" % (filename, r2)) 33 print("Current objfile is: %s" % gdb.current_objfile().filename)
|
| py-breakpoint-create-fail.py | 16 import gdb 19 class MyBP(gdb.Breakpoint): 27 bp = MyBP("does_not_exist", gdb.BP_WATCHPOINT)
|
| py-error.py | 16 import gdb 19 class ClassName(gdb.Command): 23 gdb.Command.__init__(self, "ClassName", gdb.COMMAND_DATA, prefix=True)
|
| py-progspace-events.py | 16 # This file is part of the GDB testsuite, it registers listeners for 19 import gdb 20 import gdb.events 31 gdb.events.new_progspace.connect(new_progspace) 32 gdb.events.free_progspace.connect(free_progspace)
|
| /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.python/ |
| py-mi-objfile-gdb.py | 16 # This file is part of the GDB testsuite. 18 import gdb 24 gdb.execute("set width 101", to_string=True) 26 gdb.execute("list -q main")
|
| py-auto-load-chaining-f2.o-gdb.py | 21 print("Current objfile is: %s" % gdb.current_objfile().filename)
|
| py-auto-load-chaining-f1.o-gdb.py | 23 print("Current objfile is: %s" % gdb.current_objfile().filename) 27 filename = gdb.current_objfile().filename 29 r2 = gdb.lookup_global_symbol("region_2").value() 30 gdb.execute("add-symbol-file %s 0x%x" % (filename, r2)) 33 print("Current objfile is: %s" % gdb.current_objfile().filename)
|
| py-breakpoint-create-fail.py | 16 import gdb 19 class MyBP(gdb.Breakpoint): 27 bp = MyBP("does_not_exist", gdb.BP_WATCHPOINT)
|
| py-error.py | 16 import gdb 19 class ClassName(gdb.Command): 23 gdb.Command.__init__(self, "ClassName", gdb.COMMAND_DATA, prefix=True)
|
| py-progspace-events.py | 16 # This file is part of the GDB testsuite, it registers listeners for 19 import gdb 20 import gdb.events 31 gdb.events.new_progspace.connect(new_progspace) 32 gdb.events.free_progspace.connect(free_progspace)
|
| /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 */
|
| /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 */
|
| /src/external/gpl3/gdb/dist/gdb/ |
| break-cond-parse.h | 3 This file is part of GDB. 48 (const char *tok, gdb::unique_xmalloc_ptr<char> *cond_string, 50 gdb::unique_xmalloc_ptr<char> *rest, bool *force);
|
| macroexp.h | 1 /* Interface to C preprocessor macro expansion for GDB. 5 This file is part of GDB. 32 gdb::unique_xmalloc_ptr<char> macro_expand (const char *source, 42 gdb::unique_xmalloc_ptr<char> macro_expand_once (const char *source, 60 accommodate GDB's C expression parser, which may not consume the 63 (gdb) break *func+20 if x == 5 71 gdb::unique_xmalloc_ptr<char> macro_expand_next (const char **lexptr, 82 gdb::unique_xmalloc_ptr<char> macro_stringify (const char *str);
|
| /src/external/gpl3/gdb/dist/gdb/dwarf2/ |
| read-gdb-index.h | 5 This file is part of GDB. 32 typedef gdb::function_view 33 <gdb::array_view<const gdb_byte>(objfile *, dwarf2_per_bfd *)> 35 typedef gdb::function_view 36 <gdb::array_view<const gdb_byte>(objfile *, dwz_file *)>
|
| /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/testsuite/boards/ |
| gdbserver-base.exp | 30 set_board_info gdb,nofileio 1 33 set_board_info gdb,predefined_tsv "\\\$trace_timestamp"
|
| /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.guile/ |
| scm-error-1.scm | 16 (use-modules (gdb))
|
| /src/external/gpl3/gdb.old/dist/gdb/dwarf2/ |
| read-gdb-index.h | 5 This file is part of GDB. 32 typedef gdb::function_view 33 <gdb::array_view<const gdb_byte>(objfile *, dwarf2_per_bfd *)> 35 typedef gdb::function_view 36 <gdb::array_view<const gdb_byte>(objfile *, dwz_file *)>
|
| /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.old/dist/gdb/ |
| macroexp.h | 1 /* Interface to C preprocessor macro expansion for GDB. 5 This file is part of GDB. 32 gdb::unique_xmalloc_ptr<char> macro_expand (const char *source, 42 gdb::unique_xmalloc_ptr<char> macro_expand_once (const char *source, 60 accommodate GDB's C expression parser, which may not consume the 63 (gdb) break *func+20 if x == 5 71 gdb::unique_xmalloc_ptr<char> macro_expand_next (const char **lexptr, 82 gdb::unique_xmalloc_ptr<char> macro_stringify (const char *str);
|
| /src/external/gpl3/gdb.old/dist/gdb/testsuite/boards/ |
| gdbserver-base.exp | 30 set_board_info gdb,nofileio 1 33 set_board_info gdb,predefined_tsv "\\\$trace_timestamp"
|
| /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.guile/ |
| scm-error-1.scm | 16 (use-modules (gdb))
|