Searched refs:backtrace (Results 76 - 100 of 105) sorted by relevance

12345

/macosx-10.10/emacs-93/emacs/src/
H A Dkeyboard.c119 struct backtrace struct
121 struct backtrace *next;
191 extern struct backtrace *backtrace_list;
9993 struct backtrace backtrace;
10060 backtrace.next = backtrace_list;
10061 backtrace_list = &backtrace;
10062 backtrace.function = &Qcall_interactively;
10063 backtrace.args = &cmd;
10064 backtrace
9961 struct backtrace backtrace; variable in typeref:struct:backtrace
[all...]
H A Dlisp.h1773 /* Structure for recording Lisp call stack for backtrace purposes. */
1820 or display a backtrace. */
1837 extern struct backtrace *backtrace_list;
/macosx-10.10/emacs-93/emacs/lisp/emacs-lisp/
H A Ddebug.el48 if the backtrace text has more than this many lines,
66 (defvar debugger-previous-backtrace nil
67 "The contents of the previous backtrace (including text properties).
114 first will be printed into the backtrace buffer."
181 ;; Skip the frames for backtrace-debug, byte-code,
183 (backtrace-debug 4 t)
185 (when (eq 'lambda (car-safe (cadr (backtrace-frame 4))))
186 (backtrace-debug 5 t)))
191 ;; If the backtrace is long, save the beginning
213 ;; Kill or at least neuter the backtrace buffe
[all...]
H A Dedebug.el34 ;; debug style backtrace.
2549 ;; Let's at least show a backtrace so the user can figure out
2809 (defvar edebug-backtrace-buffer) ; each recursive edit gets its own
2862 edebug-backtrace-buffer ; each recursive edit gets its own
2932 (if edebug-backtrace-buffer
2933 (kill-buffer edebug-backtrace-buffer))
3856 (define-key map "d" 'edebug-backtrace)
4104 ;; since they depend on the backtrace looking a certain way. But
4136 (defun edebug-backtrace ()
4137 "Display a non-working backtrace
[all...]
/macosx-10.10/ruby-106/ruby/test/ruby/
H A Denvutil.rb318 res.backtrace.each do |l|
H A Dtest_parse.rb855 actual = e.backtrace.first[/\A#{Regexp.quote(__FILE__)}:(\d+):/o, 1].to_i
/macosx-10.10/ruby-106/ruby/
H A Dvm_dump.c640 fprintf(stderr, "-- C level backtrace information "
647 int n = backtrace(trace, MAX_NATIVE_TRACE);
H A Dvm.c2215 int n = backtrace(trace, MAX_NATIVE_TRACE);
/macosx-10.10/ruby-106/ruby/ext/tk/lib/
H A Dmulti-tk.rb212 if e.backtrace[0] =~ /^(.+?):(\d+):in `(exit|exit!|abort)'/
468 if e.backtrace[0] =~ /^(.+?):(\d+):in `(exit|exit!|abort)'/
488 if e.backtrace[0] =~ /^(.+?):(\d+):in `(exit|exit!|abort)'/
559 bt = _toUTF8(e.backtrace.join("\n"))
566 bt = e.backtrace.join("\n")
1831 #p e.backtrace
1833 caller_info = e.backtrace[1]
1866 #p e.backtrace
1868 caller_info = e.backtrace[1]
2177 bt = _toUTF8(e.backtrace
[all...]
H A Dtk.rb1612 "\n---< backtrace of Ruby side >-----\n" +
1613 _toUTF8(e.backtrace.join("\n")) +
1614 "\n---< backtrace of Tk side >-------"
1622 "\n---< backtrace of Ruby side >-----\n" +
1623 e.backtrace.join("\n") +
1624 "\n---< backtrace of Tk side >-------"
1643 "\n---< backtrace of Ruby side >-----\n" +
1644 e.backtrace.join("\n") +
1645 "\n---< backtrace of Tk side >-------")
1653 # raise 'check backtrace'
[all...]
/macosx-10.10/dcerpc-61/dcerpc/
H A Dconfigure.in351 AC_CHECK_FUNCS(backtrace backtrace_symbols backtrace_symbols_fd)
/macosx-10.10/ruby-106/ruby/ext/tk/sample/demos-en/
H A Dwidget680 "\n---< backtrace of Ruby side >-----\n" +
681 e.backtrace.join("\n") +
682 "\n---< backtrace of Tk side >-------")
/macosx-10.10/IOKitUser-1050.1.21/pwr_mgt.subproj/
H A DIOPMAssertions.c124 int nframes = backtrace((void**)(&bt), NUM_BT_FRAMES);
/macosx-10.10/bind9-45.101/bind9/bin/named/
H A Dmain.c29 #include <isc/backtrace.h>
/macosx-10.10/emacs-93/emacs/lisp/progmodes/
H A Dcperl-mode.el1312 ["Debug backtrace on syntactic scan (BEWARE!!!)"
6931 (defun cperl-toggle-set-debug-unwind (arg &optional backtrace)
6948 (if backtrace 'backtrace 'message)) 0 1)))
6949 (setq arg (if (> arg 0) (if backtrace 'backtrace 'message) t))
7562 ;; Try to backtrace
8979 start from-start edebug-backtrace-buffer)
8980 (if (eq cperl-syntaxify-by-font-lock 'backtrace)
8983 (let ((f 'edebug-backtrace))
[all...]
/macosx-10.10/ruby-106/ruby/ext/tk/sample/demos-jp/
H A Dwidget737 "\n---< backtrace of Ruby side >-----\n" +
738 e.backtrace.join("\n") +
739 "\n---< backtrace of Tk side >-------")
/macosx-10.10/vim-55/runtime/syntax/
H A Dmaxima.vim45 syn keyword maximaFunc av backsubst backtrace bashindices batch batchload bc2 bdvac
/macosx-10.10/configd-699.1.5/SystemConfiguration.fproj/
H A DSCDPrivate.c1378 n = backtrace(stack, sizeof(stack)/sizeof(stack[0]));
1380 SCLog(TRUE, LOG_ERR, CFSTR("backtrace() failed: %s"), strerror(errno));
/macosx-10.10/ruby-106/ruby/ext/tk/sample/tkextlib/treectrl/
H A Ddemo.rb748 bt = e.backtrace
/macosx-10.10/ruby-106/ruby/test/rexml/
H A Dtest_xpath.rb234 fail("Error on line #{line}:\n#{z.message}\n"+z.backtrace[0,10].join("\n"))
235 #results.root.add_element( "error", {"path"=>line}).text = z.message+"\n"+z.backtrace[0,10].join("\n")
/macosx-10.10/ruby-106/ruby/ext/tk/
H A Dtcltklib.c3291 volatile VALUE backtrace; local
3298 DUMP1("set backtrace");
3299 if (!NIL_P(backtrace = rb_funcall(exc, ID_backtrace, 0, 0))) {
3300 backtrace = rb_ary_join(backtrace, rb_str_new2("\n"));
3301 Tcl_AddErrorInfo(interp, StringValuePtr(backtrace));
10910 ID_backtrace = rb_intern("backtrace");
/macosx-10.10/cups-408/cups/backend/
H A Dusb-darwin.c119 uint64_t backtrace; // char * member in struct:crashreporter_annotations_t
/macosx-10.10/ruby-106/ruby/test/rubygems/
H A Dtest_gem_specification.rb1756 assert e.backtrace.grep(name_rexp).any?
/macosx-10.10/objc4-646/runtime/
H A DNSObject.mm919 int count = backtrace(stack, sizeof(stack)/sizeof(stack[0]));
/macosx-10.10/bind9-45.101/bind9/
H A Dconfigure2244 --enable-backtrace log stack backtrace on abort [default=yes]
2245 --enable-symtable use internal symbol table for backtrace
19584 # Note: the backtrace feature (see below) uses perl to build the symbol table,
23504 # enable/disable dumping stack backtrace. Also check if the system supports
23505 # glibc-compatible backtrace() function.
23507 # Check whether --enable-backtrace was given.
23523 return (backtrace((void **)0, 0));

Completed in 613 milliseconds

12345