Home | History | Annotate | Download | only in files

Lines Matching refs:jdb

3 ;;; Set up GUD+JDB to attach to a Java process running on the phone or
6 (defvar android-jdb-port-history '("8700")
7 "history of ports supplied to `android-jdb'")
9 (defvar android-jdb-project-root-history '()
10 "history of project roots supplied to `android-jdb'")
11 (defvar android-jdb-history nil
12 "history of commands supplied to `android-jdb'")
14 (defvar android-jdb-activity-class-history ()
17 (defcustom android-jdb-command-name "jdb"
61 (defun android-jdb (port root)
62 "Set GUD+JDB up to run against Android on PORT in directory ROOT."
66 (car android-jdb-port-history)
69 'android-jdb-port-history)
72 (let ((jdb-command
74 android-jdb-command-name
77 (if (not (string= jdb-command (car android-jdb-history)))
78 (push jdb-command android-jdb-history))
79 (jdb jdb-command)))
112 (car android-jdb-activity-class-history)
115 'android-jdb-activity-class-history)))
124 (car android-jdb-activity-class-history)
127 'android-jdb-activity-class-history)))