Searched refs:signal (Results 76 - 100 of 117) sorted by relevance

12345

/bionic/libc/arch-mips/bionic/
H A Dsetjmp.S118 * @(#)signal.h 8.1 (Berkeley) 6/10/93
217 # get the cookie and store it along with the signal flag.
225 beqz $t0, 1f # do saving of signal mask?
228 LA $a2, SC_MASK_OFFSET($a0) # gets current signal mask
231 jal sigprocmask # get current signal mask
346 beqz $t0, 1f # restore signal mask?
352 jal sigprocmask # restore signal mask
/bionic/libc/arch-mips64/bionic/
H A Dsetjmp.S118 * @(#)signal.h 8.1 (Berkeley) 6/10/93
217 # get the cookie and store it along with the signal flag.
225 beqz $t0, 1f # do saving of signal mask?
228 LA $a2, SC_MASK_OFFSET($a0) # gets current signal mask
231 jal sigprocmask # get current signal mask
346 beqz $t0, 1f # restore signal mask?
352 jal sigprocmask # restore signal mask
/bionic/libc/include/
H A Dspawn.h35 #include <signal.h>
H A Dsignal.h47 * SIG_HOLD is only used by the deprecated SysV signal API.
68 sighandler_t signal(int __signal, sighandler_t __handler) __INTRODUCED_IN(21);
/bionic/libc/include/sys/
H A Dselect.h36 #include <signal.h>
H A Ducontext.h34 #include <signal.h>
/bionic/tools/versioner/current/
H A Dspawn.h35 #include <signal.h>
H A Dsignal.h47 * SIG_HOLD is only used by the deprecated SysV signal API.
68 sighandler_t signal(int __signal, sighandler_t __handler) __INTRODUCED_IN(21);
/bionic/tools/versioner/current/sys/
H A Dselect.h36 #include <signal.h>
H A Ducontext.h34 #include <signal.h>
/bionic/libc/bionic/
H A Dndk_cruft.cpp36 #include <signal.h>
243 return signal(signum, handler);
H A Dsignal.cpp31 #include <signal.h>
189 sighandler_t signal(int sig, sighandler_t handler) { function
H A Dspawn.cpp33 #include <signal.h>
/bionic/tests/headers/posix/
H A Dsignal_h.c29 #include <signal.h>
218 FUNCTION(signal, signal_handler_type (*f)(int, signal_handler_type));
/bionic/libc/kernel/uapi/drm/
H A Detnaviv_drm.h100 __u16 signal; member in struct:drm_etnaviv_gem_submit_pmr
H A Dvia_drm.h177 __u32 signal; member in struct:drm_via_wait_irq_request
/bionic/libc/upstream-netbsd/lib/libc/gen/
H A Dpopen.c52 #include <signal.h>
/bionic/libc/upstream-openbsd/lib/libc/crypt/
H A Darc4random.c28 #include <signal.h>
/bionic/libc/versioner-dependencies/common/kernel_uapi/drm/
H A Detnaviv_drm.h100 __u16 signal; member in struct:drm_etnaviv_gem_submit_pmr
H A Dvia_drm.h177 __u32 signal; member in struct:drm_via_wait_irq_request
/bionic/tools/versioner/dependencies/common/kernel_uapi/drm/
H A Detnaviv_drm.h100 __u16 signal; member in struct:drm_etnaviv_gem_submit_pmr
H A Dvia_drm.h177 __u32 signal; member in struct:drm_via_wait_irq_request
/bionic/tests/
H A Dspawn_test.cpp407 ASSERT_NE(SIG_ERR, signal(SIGALRM, SIG_IGN));
408 ASSERT_NE(SIG_ERR, signal(SIGCONT, SIG_IGN));
431 // Ensure that posix_spawn doesn't restore the caller's signal mask in the
436 signal(SIGRTMIN, SIG_IGN);
462 // We use a real-time signal because that's a tricky case for LP32
H A Dsys_select_test.cpp20 #include <signal.h>
H A Dgtest_main.cpp25 #include <signal.h>
618 sig_t ret = signal(SIGINT, signal_handler);
620 ret = signal(SIGQUIT, signal_handler);
630 sig_t ret = signal(SIGINT, SIG_DFL);
632 ret = signal(SIGQUIT, SIG_DFL);
860 // Record signal terminated test as failed.
863 snprintf(buf, sizeof(buf), "%s terminated by signal: %s.\n",

Completed in 2493 milliseconds

12345