Searched refs:gdb (Results 1 - 25 of 2345) sorted by relevance

1234567891011>>

/netbsd-current/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.python/
H A Dpy-mi-objfile-gdb.py18 import gdb namespace
24 gdb.execute("set width 101", to_string=True)
26 gdb.execute("list main")
H A Dpy-breakpoint-create-fail.py16 import gdb namespace
19 class MyBP(gdb.Breakpoint):
27 bp = MyBP('does_not_exist', gdb.BP_WATCHPOINT)
H A Dpy-completion.py18 import gdb namespace
20 class CompleteFileInit(gdb.Command):
22 gdb.Command.__init__(self,'completefileinit',gdb.COMMAND_USER,gdb.COMPLETE_FILENAME)
25 raise gdb.GdbError('not implemented')
27 class CompleteFileMethod(gdb.Command):
29 gdb.Command.__init__(self,'completefilemethod',gdb.COMMAND_USER)
32 raise gdb
[all...]
H A Dpy-error.py16 import gdb namespace
18 class ClassName(gdb.Command):
21 gdb.Command.__init__ (self, "ClassName", gdb.COMMAND_DATA, prefix=True)
H A Dpy-mi-events-gdb.py20 import gdb namespace
27 assert (isinstance (event, gdb.StopEvent))
30 stop_handler_str += gdb.execute("info break", False, True)
35 assert (isinstance (event, gdb.ContinueEvent))
38 cont_handler_str += gdb.execute("info break", False, True)
41 class test_events (gdb.Command):
45 gdb.Command.__init__ (self, "test-events", gdb.COMMAND_STACK)
48 gdb.events.stop.connect (signal_stop_handler)
49 gdb
[all...]
H A Dpy-events.py18 import gdb namespace
21 if (isinstance (event, gdb.StopEvent)):
23 if (isinstance (event, gdb.SignalEvent)):
30 if (isinstance (event, gdb.StopEvent)):
32 if (isinstance (event, gdb.BreakpointEvent)):
43 assert (isinstance (event, gdb.ExitedEvent))
50 assert (isinstance (event, gdb.ContinueEvent))
56 assert (isinstance (event, gdb.NewObjFileEvent))
61 assert (isinstance (event, gdb.ClearObjFilesEvent))
66 if (isinstance (event, gdb
[all...]
/netbsd-current/external/gpl3/gdb/dist/gdb/testsuite/gdb.python/
H A Dpy-mi-objfile-gdb.py18 import gdb namespace
24 gdb.execute("set width 101", to_string=True)
26 gdb.execute("list -q main")
H A Dpy-auto-load-chaining-f2.o-gdb.py21 print("Current objfile is: %s" % gdb.current_objfile().filename)
H A Dpy-breakpoint-create-fail.py16 import gdb namespace
19 class MyBP(gdb.Breakpoint):
27 bp = MyBP("does_not_exist", gdb.BP_WATCHPOINT)
H A Dpy-completion.py18 import gdb namespace
21 class CompleteFileInit(gdb.Command):
23 gdb.Command.__init__(
24 self, "completefileinit", gdb.COMMAND_USER, gdb.COMPLETE_FILENAME
28 raise gdb.GdbError("not implemented")
31 class CompleteFileMethod(gdb.Command):
33 gdb.Command.__init__(self, "completefilemethod", gdb.COMMAND_USER)
36 raise gdb
[all...]
H A Dpy-error.py16 import gdb namespace
19 class ClassName(gdb.Command):
23 gdb.Command.__init__(self, "ClassName", gdb.COMMAND_DATA, prefix=True)
H A Dpy-mi-events-gdb.py20 import gdb namespace
28 assert isinstance(event, gdb.StopEvent)
31 stop_handler_str += gdb.execute("info break", False, True)
36 assert isinstance(event, gdb.ContinueEvent)
39 cont_handler_str += gdb.execute("info break", False, True)
42 class test_events(gdb.Command):
46 gdb.Command.__init__(self, "test-events", gdb.COMMAND_STACK)
49 gdb.events.stop.connect(signal_stop_handler)
50 gdb
[all...]
H A Dpy-auto-load-chaining-f1.o-gdb.py23 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)
H A Dpy-event-load.py18 import gdb namespace
25 assert isinstance(event, gdb.FreeObjFileEvent)
30 gdb.events.free_objfile.connect(free_objfile_handler)
/netbsd-current/external/gpl3/gdb.old/dist/gdbsupport/
H A Dbyte-vector.h23 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 */
H A Dpathstuff.h33 extern gdb::unique_xmalloc_ptr<char> gdb_realpath (const char *filename);
38 extern gdb::unique_xmalloc_ptr<char>
52 extern gdb::unique_xmalloc_ptr<char> gdb_abspath (const char *path);
67 $XDG_CACHE_HOME/gdb if the XDG_CACHE_HOME environment variable is
71 ~/Library/Caches/gdb.
96 extern gdb::char_vector make_temp_filename (const std::string &f);
/netbsd-current/external/gpl3/gdb/dist/gdbsupport/
H A Dbyte-vector.h23 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 */
/netbsd-current/external/gpl3/gdb.old/dist/gdb/unittests/optional/
H A Din_place.cc25 gdb::optional<int> o { gdb::in_place };
30 static_assert( !std::is_convertible<gdb::in_place_t, gdb::optional<int>>(), "" );
35 gdb::optional<int> o { gdb::in_place, 42 };
41 gdb::optional<std::vector<int>> o { gdb::in_place, 18, 4 };
49 gdb::optional<std::vector<int>> o { gdb
[all...]
/netbsd-current/external/gpl3/gdb/dist/gdb/unittests/optional/
H A Din_place.cc25 gdb::optional<int> o { gdb::in_place };
30 static_assert( !std::is_convertible<gdb::in_place_t, gdb::optional<int>>(), "" );
35 gdb::optional<int> o { gdb::in_place, 42 };
41 gdb::optional<std::vector<int>> o { gdb::in_place, 18, 4 };
49 gdb::optional<std::vector<int>> o { gdb
[all...]
/netbsd-current/external/gpl3/gdb.old/dist/gdb/unittests/basic_string_view/element_access/char/
H A Dempty.cc27 gdb::string_view empty;
32 const gdb::string_view empty;
/netbsd-current/external/gpl3/gdb.old/dist/sim/moxie/
H A DMakefile.in20 dtbdir = @datadir@/gdb/dtb
29 SIM_EXTRA_CFLAGS = -DDTB="\"$(dtbdir)/moxie-gdb.dtb\""
33 all: moxie-gdb.dtb
35 moxie-gdb.dtb: moxie-gdb.dts
36 dtc -O dtb -o moxie-gdb.dtb ${srcdir}/moxie-gdb.dts
38 install-dtb: moxie-gdb.dtb
40 $(INSTALL_DATA) moxie-gdb.dtb $(DESTDIR)$(dtbdir)/moxie-gdb
[all...]
/netbsd-current/external/gpl3/gdb/dist/gdb/unittests/basic_string_view/element_access/char/
H A Dempty.cc27 gdb::string_view empty;
32 const gdb::string_view empty;
/netbsd-current/external/gpl3/gdb.old/dist/gdb/system-gdbinit/
H A Dwrs-linux.py21 gdb.execute('set sysroot %s' % os.environ['ENV_PREFIX'])
/netbsd-current/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.guile/
H A Dscm-error-1.scm16 (use-modules (gdb))
/netbsd-current/external/gpl3/gdb.old/dist/gdb/
H A Dmacroexp.h32 gdb::unique_xmalloc_ptr<char> macro_expand (const char *source,
42 gdb::unique_xmalloc_ptr<char> macro_expand_once (const char *source,
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);

Completed in 401 milliseconds

1234567891011>>