Searched refs:jmp_buf (Results 1 - 25 of 155) sorted by relevance

1234567

/freebsd-10.1-release/contrib/libstdc++/include/c_compatibility/
H A Dsetjmp.h35 using std::jmp_buf;
/freebsd-10.1-release/include/
H A Dsetjmp.h43 /* The size of the jmp_buf is machine dependent: */
48 void _longjmp(jmp_buf, int) __dead2;
49 int _setjmp(jmp_buf) __returns_twice;
51 void longjmp(jmp_buf, int) __dead2;
55 int setjmp(jmp_buf) __returns_twice;
/freebsd-10.1-release/sys/mips/include/
H A Dsetjmp.h42 #define _JBLEN 95 /* size, in longs (or long longs), of a jmp_buf */
45 * jmp_buf and sigjmp_buf are encapsulated in different structs to force
60 typedef struct _jmp_buf { long long _jb[_JBLEN + 1]; } jmp_buf[1]; typedef in typeref:struct:_jmp_buf
62 typedef struct _jmp_buf { long _jb[_JBLEN + 1]; } jmp_buf[1]; typedef in typeref:struct:_jmp_buf
/freebsd-10.1-release/sys/powerpc/include/
H A Dsetjmp.h14 * jmp_buf and sigjmp_buf are encapsulated in different structs to force
22 typedef struct _jmp_buf { long _jb[_JBLEN + 1]; } jmp_buf[1]; typedef in typeref:struct:_jmp_buf
/freebsd-10.1-release/sys/x86/include/
H A Dsetjmp.h37 #define _JBLEN 12 /* Size of the jmp_buf on AMD64. */
40 * jmp_buf and sigjmp_buf are encapsulated in different structs to force
48 typedef struct _jmp_buf { long _jb[_JBLEN]; } jmp_buf[1]; typedef in typeref:struct:_jmp_buf
/freebsd-10.1-release/contrib/libreadline/
H A Dposixjmp.h37 # define procenv_t jmp_buf
/freebsd-10.1-release/contrib/libstdc++/include/c_std/
H A Dstd_csetjmp.h63 using ::jmp_buf;
/freebsd-10.1-release/sys/sparc64/include/
H A Dsetjmp.h47 * jmp_buf and sigjmp_buf are encapsulated in different structs to force
55 typedef struct _jmp_buf { long _jb[_JBLEN + 1]; } jmp_buf[1]; typedef in typeref:struct:_jmp_buf
/freebsd-10.1-release/contrib/sendmail/include/sm/
H A Dsetjmp.h38 typedef jmp_buf SM_JMPBUF_T;
/freebsd-10.1-release/sys/arm/include/
H A Dsetjmp.h11 #define _JBLEN 64 /* size, in longs, of a jmp_buf */
14 * NOTE: The internal structure of a jmp_buf is *PRIVATE*
47 * The magic number number identifies the jmp_buf and
70 /* Valid for all jmp_buf's */
104 typedef struct _jmp_buf { int _jb[_JBLEN + 1]; } jmp_buf[1]; typedef in typeref:struct:_jmp_buf
/freebsd-10.1-release/contrib/telnet/libtelnet/
H A Dread_password.c67 static jmp_buf env;
86 jmp_buf old_env;
94 /* XXX assume jmp_buf is typedef'ed to an array */
/freebsd-10.1-release/sys/sparc64/sparc64/
H A Ddb_interface.c57 jmp_buf jb;
76 jmp_buf jb;
/freebsd-10.1-release/bin/sh/
H A Derror.h37 * We enclose jmp_buf in a structure so that we can declare pointers to
50 jmp_buf loc;
/freebsd-10.1-release/contrib/tcp_wrappers/
H A Ddiag.c28 jmp_buf tcpd_buf;
/freebsd-10.1-release/crypto/heimdal/appl/ftp/ftp/
H A Dextern.h154 extern jmp_buf abortprox;
160 extern jmp_buf jabort;
H A Dftp_var.h93 extern jmp_buf toplevel; /* non-local goto stuff for cmd scanner */
H A Dglobals.c52 jmp_buf toplevel; /* non-local goto stuff for cmd scanner */
/freebsd-10.1-release/sbin/dhclient/tests/
H A Dfake.c9 extern jmp_buf env;
/freebsd-10.1-release/usr.bin/mail/
H A Dglob.h83 jmp_buf srbuf;
/freebsd-10.1-release/sys/i386/i386/
H A Ddb_interface.c53 jmp_buf jb;
75 jmp_buf jb;
/freebsd-10.1-release/sys/powerpc/powerpc/
H A Ddb_interface.c33 jmp_buf jb;
58 jmp_buf jb;
/freebsd-10.1-release/contrib/gcc/
H A Dunwind-sjlj.c44 typedef void *jmp_buf[JMP_BUF_SIZE]; typedef
45 extern void longjmp(jmp_buf, int) __attribute__((noreturn));
80 jmp_buf has. We over estimated in except.c, and now we have
83 jmp_buf jbuf __attribute__((aligned));
/freebsd-10.1-release/sys/amd64/amd64/
H A Ddb_interface.c53 jmp_buf jb;
75 jmp_buf jb;
/freebsd-10.1-release/cddl/contrib/opensolaris/lib/libdtrace/common/
H A Ddt_pcb.h82 jmp_buf pcb_jmpbuf; /* setjmp(3C) buffer for error return */
/freebsd-10.1-release/contrib/gdb/gdb/gdbserver/
H A Dutils.c60 extern jmp_buf toplevel;

Completed in 334 milliseconds

1234567