/src/sys/arch/sgimips/sgimips/ |
arcemu.h | 86 ip6_set_pre(int raise) 88 if (raise) 96 ip6_set_cs(int raise) 98 if (raise) 106 ip6_set_sk(int raise) 108 if (raise) 125 ip6_set_di(int raise) 127 if (raise) 135 ip12_set_pre(int raise) 137 if (raise) [all...] |
/src/sys/arch/sparc/include/ |
intr.h | 85 extern void raise(int, int); 87 #define sparc_softintr_schedule(cookie) raise(0, *((int *) (cookie))) 91 raise(0, *((int *)(cookie))); \
|
/src/lib/libc/gen/ |
raise.c | 1 /* $NetBSD: raise.c,v 1.8 2009/01/29 23:52:21 rmind Exp $ */ 35 static char sccsid[] = "@(#)raise.c 8.1 (Berkeley) 6/4/93"; 37 __RCSID("$NetBSD: raise.c,v 1.8 2009/01/29 23:52:21 rmind Exp $"); 45 raise(int s) function in typeref:typename:int
|
/src/lib/libc/stdlib/ |
abort.c | 74 (void)raise(SIGABRT); 82 (void)raise(SIGABRT);
|
/src/lib/libc/thread-stub/ |
thread-stub-init.c | 53 #define DIE() (void)raise(SIGABRT)
|
/src/tests/lib/libc/misc/ |
t_ubsan.c | 122 raise((a + b) ? SIGSEGV : SIGBUS); 145 raise((a + b) ? SIGSEGV : SIGBUS); 172 raise(SIGSEGV); 194 raise((a / b) ? SIGSEGV : SIGBUS); // SIGFPE will be triggered before exiting 216 raise((a % b) ? SIGSEGV : SIGBUS); 244 raise(reinterpret_cast<int(*)(int)> 270 raise(b ? SIGBUS : SIGSEGV); \ 301 raise(b ? SIGSEGV : SIGBUS); 324 raise((E == e1) ? SIGSEGV : SIGBUS); 354 raise(a ? SIGSEGV : SIGBUS) [all...] |
/src/tests/lib/libc/gen/ |
t_raise.c | 80 atf_tc_set_md_var(tc, "descr", "Test raise(3) for invalid parameters"); 89 ATF_REQUIRE(raise(10240 + i) == -1); 98 atf_tc_set_md_var(tc, "descr", "Test return order of raise(3)"); 111 * Verify that raise(3) does not return 116 ATF_REQUIRE(raise(SIGUSR1) == 0); 119 atf_tc_fail("raise(3) returned before signal handler"); 125 atf_tc_set_md_var(tc, "descr", "A basic test of raise(3)"); 149 ATF_REQUIRE(raise(sig[i]) == 0); 153 atf_tc_fail("raise(3) did not raise a signal") [all...] |
/src/sys/arch/landisk/stand/bootxx/ |
boot1.c | 52 int raise(int sig); 143 raise(int sig) function in typeref:typename:int
|
/src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/scripts/ |
sancov.py | 29 raise Exception("Wrong bitness: %d" % bits) 61 raise Exception('Bad magic word in %s' % path) 70 raise Exception('File %s is short (< 8 bytes)' % path) 130 raise Exception('Error reading file %s' % path) 143 raise Exception('Wrong bits size in the map') 187 raise Exception('Unexpected raw file name %s' % f) 209 raise Exception('File not found: %s' % binary)
|
gen_dynamic_list.py | 71 raise subprocess.CalledProcessError(nm_proc.returncode, nm)
|
/src/lib/libutil/ |
raise_default_signal.c | 50 * Raise the default signal handler for sig, by 53 * - raise the signal 61 * sigaction(), or raise(). 93 /* Raise the signal, and unblock the signal to deliver it */ 94 if ((raise(sig) == -1) || 98 /* Flag successful raise() */
|
/src/tests/lib/libc/sys/ |
t_ptrace_kill_wait.h | 45 FORKEE_ASSERT(raise(sigval) == 0);
|
t_ptrace_i386_wait.h | 54 FORKEE_ASSERT(raise(sigval) == 0);
|
t_ptrace_misc_wait.h | 53 FORKEE_ASSERT(raise(sigval) == 0);
|
t_ptrace_eventmask_wait.h | 48 FORKEE_ASSERT(raise(sigval) == 0);
|
t_ptrace_amd64_wait.h | 57 FORKEE_ASSERT(raise(sigval) == 0);
|
t_ptrace_syscall_wait.h | 74 FORKEE_ASSERT(raise(sigval) == 0); 215 FORKEE_ASSERT(raise(sigval) == 0);
|
t_ptrace_threads_wait.h | 85 FORKEE_ASSERT(raise(sigval) == 0); 292 FORKEE_ASSERT(raise(sigval) == 0); 473 FORKEE_ASSERT(raise(sigval) == 0); 523 raise(SIGUSR1); 531 raise(SIGUSR2); 565 FORKEE_ASSERT(raise(sigval) == 0); 789 FORKEE_ASSERT(raise(sigval) == 0);
|
t_ptrace_topology_wait.h | 122 raise(SIGSTOP); 331 SYSCALL_REQUIRE(raise(SIGSTOP) != -1); 452 SYSCALL_REQUIRE(raise(SIGSTOP) != -1); 494 * The ATF framework (atf-run) does not tolerate raise(SIGSTOP), as
|
/src/lib/libc/misc/ |
stack_protector.c | 104 (void)raise(SIGABRT);
|
/src/common/dist/zlib/contrib/delphi/ |
ZLib.pas | 62 stream will raise an exception. Using Seek to move the stream pointer 63 will raise an exception. 106 the stream will raise an exception. 269 raise EZlibError.Create('error'); //!! 276 raise ECompressionError.Create('error'); //!! 283 raise EDecompressionError.Create('error'); //!! 319 raise 362 raise 381 raise EZlibError.CreateRes(@sTargetBufferTooSmall); 441 raise ECompressionError.CreateRes(@sInvalidStreamOp) [all...] |
/src/tests/lib/libc/setjmp/ |
t_sigstack.c | 145 * The signal should be blocked at this point, so we re-raise 151 RL(raise(SIGUSR1)); 211 * Raise the signal to enter the signal handler the first time. 213 RL(raise(SIGUSR1));
|
/src/sbin/fsck_lfs/ |
fsck.h | 161 #define setbmap(blkno,ino) if(blkno > maxfsblock)raise(1); else blockmap[blkno] = ino
|
/src/common/dist/zlib/contrib/ada/ |
mtest.adb | 67 raise Program_Error; 126 raise Program_Error;
|
/src/sys/arch/landisk/stand/boot/ |
boot2.c | 519 int raise(int sig); 523 raise(int sig) function in typeref:typename:int
|