• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.9.5/emacs-92/emacs/lisp/progmodes/

Lines Matching defs:xdb

33 ;; <shane@spr.com> added support for xdb (HPUX debugger).  Rick Sladkey
37 ;; kluge with the gud-xdb-directories hack producing gud-dbx-directories.
61 Supported debuggers include gdb, sdb, dbx, xdb, perldb, pdb (Python), jdb."
145 '(gdbmi gdba dbx sdb xdb pdb))
168 '(gdbmi gdba gdb sdb xdb)))
175 '(gdbmi gdba gdb dbx xdb jdb pdb)))
179 '(gdbmi gdba gdb dbx xdb jdb pdb)))
198 '(gdbmi gdba gdb xdb jdb pdb)))
1197 ;; this filter is influenced by the xdb one rather than the gdb one
1354 ;; xdb (HP PARISC debugger) functions
1356 ;; History of argument lists passed to xdb.
1357 (defvar gud-xdb-history nil)
1359 (defcustom gud-xdb-directories nil
1360 "*A list of directories that xdb should search for source code.
1362 will be known to xdb.
1371 (defun gud-xdb-massage-args (file args)
1372 (nconc (let ((directories gud-xdb-directories)
1380 ;; xdb does not print the lines all at once, so we have to accumulate them
1381 (defun gud-xdb-marker-filter (string)
1400 (defun xdb (command-line)
1401 "Run xdb on program FILE in buffer *gud-FILE*.
1405 You can set the variable `gud-xdb-directories' to a list of program source
1407 (interactive (list (gud-query-cmdline 'xdb)))
1409 (gud-common-init command-line 'gud-xdb-massage-args
1410 'gud-xdb-marker-filter)
1411 (set (make-local-variable 'gud-minor-mode) 'xdb)
1427 (run-hooks 'xdb-mode-hook))
2396 M-x perldb, M-x xdb, or M-x jdb. Each entry point finishes by executing a
2398 `perldb-mode-hook', `xdb-mode-hook', or `jdb-mode-hook' respectively.
2421 The above commands are common to all supported debuggers except xdb which
2424 Under gdb, sdb and xdb, \\[gud-tbreak] behaves exactly like \\[gud-break],
2428 Under gdb, dbx, and xdb, \\[gud-up] pops up through an enclosing stack
2431 If you are using gdb or xdb, \\[gud-finish] runs execution to the return from
3395 ((xdb pdb) (concat "p " expr))