HomeSort by relevance Sort by last modified time
    Searched refs:sigaction (Results 1 - 25 of 1408) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/ltp/testcases/open_posix_testsuite/conformance/definitions/signal_h/
29-1-buildonly.c 3 int sigaction(int, const struct sigaction *restrict,
4 struct sigaction *restrict);
11 typedef int (*sigaction_test) (int, const struct sigaction *,
12 struct sigaction *);
17 dummyvar = sigaction;
  /external/strace/tests/
list_sigaction_signum.c 2 * List signal numbers that are valid arguments for sigaction syscall.
41 static const struct sigaction ign = { .sa_handler = SIG_IGN };
42 static const struct sigaction dfl = { .sa_handler = SIG_DFL };
43 struct sigaction act;
45 if (sigaction(i, &ign, NULL) ||
46 sigaction(i, NULL, &act) ||
48 sigaction(i, &dfl, NULL) ||
49 sigaction(i, NULL, &act) ||
  /external/strace/tests-m32/
list_sigaction_signum.c 2 * List signal numbers that are valid arguments for sigaction syscall.
41 static const struct sigaction ign = { .sa_handler = SIG_IGN };
42 static const struct sigaction dfl = { .sa_handler = SIG_DFL };
43 struct sigaction act;
45 if (sigaction(i, &ign, NULL) ||
46 sigaction(i, NULL, &act) ||
48 sigaction(i, &dfl, NULL) ||
49 sigaction(i, NULL, &act) ||
  /external/strace/tests-mx32/
list_sigaction_signum.c 2 * List signal numbers that are valid arguments for sigaction syscall.
41 static const struct sigaction ign = { .sa_handler = SIG_IGN };
42 static const struct sigaction dfl = { .sa_handler = SIG_DFL };
43 struct sigaction act;
45 if (sigaction(i, &ign, NULL) ||
46 sigaction(i, NULL, &act) ||
48 sigaction(i, &dfl, NULL) ||
49 sigaction(i, NULL, &act) ||
  /system/core/debuggerd/include/debuggerd/
handler.h 42 static void __attribute__((__unused__)) debuggerd_register_handlers(struct sigaction* action) {
43 sigaction(SIGABRT, action, nullptr);
44 sigaction(SIGBUS, action, nullptr);
45 sigaction(SIGFPE, action, nullptr);
46 sigaction(SIGILL, action, nullptr);
47 sigaction(SIGSEGV, action, nullptr);
49 sigaction(SIGSTKFLT, action, nullptr);
51 sigaction(SIGSYS, action, nullptr);
52 sigaction(SIGTRAP, action, nullptr);
53 sigaction(DEBUGGER_SIGNAL, action, nullptr)
    [all...]
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/sigaction/
3-1.c 9 Test case for assertion #3 of the sigaction system call that shows
10 calling sigaction with a null act argument does not change the
16 3. Call sigaction with a null act
34 struct sigaction act;
35 struct sigaction oact;
40 if (sigaction(SIGABRT, &act, 0) == -1) {
46 if (sigaction(SIGABRT, 0, &oact) == -1) {
3-10.c 9 Test case for assertion #3 of the sigaction system call that shows
10 calling sigaction with a null act argument does not change the
16 3. Call sigaction with a null act
34 struct sigaction act;
35 struct sigaction oact;
40 if (sigaction(SIGPIPE, &act, 0) == -1) {
46 if (sigaction(SIGPIPE, 0, &oact) == -1) {
3-11.c 9 Test case for assertion #3 of the sigaction system call that shows
10 calling sigaction with a null act argument does not change the
16 3. Call sigaction with a null act
34 struct sigaction act;
35 struct sigaction oact;
40 if (sigaction(SIGQUIT, &act, 0) == -1) {
46 if (sigaction(SIGQUIT, 0, &oact) == -1) {
3-12.c 9 Test case for assertion #3 of the sigaction system call that shows
10 calling sigaction with a null act argument does not change the
16 3. Call sigaction with a null act
34 struct sigaction act;
35 struct sigaction oact;
40 if (sigaction(SIGSEGV, &act, 0) == -1) {
46 if (sigaction(SIGSEGV, 0, &oact) == -1) {
3-13.c 9 Test case for assertion #3 of the sigaction system call that shows
10 calling sigaction with a null act argument does not change the
16 3. Call sigaction with a null act
34 struct sigaction act;
35 struct sigaction oact;
40 if (sigaction(SIGTERM, &act, 0) == -1) {
46 if (sigaction(SIGTERM, 0, &oact) == -1) {
3-14.c 9 Test case for assertion #3 of the sigaction system call that shows
10 calling sigaction with a null act argument does not change the
16 3. Call sigaction with a null act
34 struct sigaction act;
35 struct sigaction oact;
40 if (sigaction(SIGTSTP, &act, 0) == -1) {
46 if (sigaction(SIGTSTP, 0, &oact) == -1) {
3-15.c 9 Test case for assertion #3 of the sigaction system call that shows
10 calling sigaction with a null act argument does not change the
16 3. Call sigaction with a null act
34 struct sigaction act;
35 struct sigaction oact;
40 if (sigaction(SIGTTIN, &act, 0) == -1) {
46 if (sigaction(SIGTTIN, 0, &oact) == -1) {
3-16.c 9 Test case for assertion #3 of the sigaction system call that shows
10 calling sigaction with a null act argument does not change the
16 3. Call sigaction with a null act
34 struct sigaction act;
35 struct sigaction oact;
40 if (sigaction(SIGTTOU, &act, 0) == -1) {
46 if (sigaction(SIGTTOU, 0, &oact) == -1) {
3-17.c 9 Test case for assertion #3 of the sigaction system call that shows
10 calling sigaction with a null act argument does not change the
16 3. Call sigaction with a null act
34 struct sigaction act;
35 struct sigaction oact;
40 if (sigaction(SIGUSR1, &act, 0) == -1) {
46 if (sigaction(SIGUSR1, 0, &oact) == -1) {
3-18.c 9 Test case for assertion #3 of the sigaction system call that shows
10 calling sigaction with a null act argument does not change the
16 3. Call sigaction with a null act
34 struct sigaction act;
35 struct sigaction oact;
40 if (sigaction(SIGUSR2, &act, 0) == -1) {
46 if (sigaction(SIGUSR2, 0, &oact) == -1) {
3-19.c 9 Test case for assertion #3 of the sigaction system call that shows
10 calling sigaction with a null act argument does not change the
16 3. Call sigaction with a null act
34 struct sigaction act;
35 struct sigaction oact;
40 if (sigaction(SIGUSR2, &act, 0) == -1) {
46 if (sigaction(SIGUSR2, 0, &oact) == -1) {
3-2.c 9 Test case for assertion #3 of the sigaction system call that shows
10 calling sigaction with a null act argument does not change the
16 3. Call sigaction with a null act
34 struct sigaction act;
35 struct sigaction oact;
40 if (sigaction(SIGUSR2, &act, 0) == -1) {
46 if (sigaction(SIGUSR2, 0, &oact) == -1) {
3-20.c 9 Test case for assertion #3 of the sigaction system call that shows
10 calling sigaction with a null act argument does not change the
16 3. Call sigaction with a null act
34 struct sigaction act;
35 struct sigaction oact;
40 if (sigaction(SIGPROF, &act, 0) == -1) {
46 if (sigaction(SIGPROF, 0, &oact) == -1) {
3-21.c 9 Test case for assertion #3 of the sigaction system call that shows
10 calling sigaction with a null act argument does not change the
16 3. Call sigaction with a null act
34 struct sigaction act;
35 struct sigaction oact;
40 if (sigaction(SIGSYS, &act, 0) == -1) {
46 if (sigaction(SIGSYS, 0, &oact) == -1) {
3-22.c 9 Test case for assertion #3 of the sigaction system call that shows
10 calling sigaction with a null act argument does not change the
16 3. Call sigaction with a null act
34 struct sigaction act;
35 struct sigaction oact;
40 if (sigaction(SIGTRAP, &act, 0) == -1) {
46 if (sigaction(SIGTRAP, 0, &oact) == -1) {
3-23.c 9 Test case for assertion #3 of the sigaction system call that shows
10 calling sigaction with a null act argument does not change the
16 3. Call sigaction with a null act
34 struct sigaction act;
35 struct sigaction oact;
40 if (sigaction(SIGURG, &act, 0) == -1) {
46 if (sigaction(SIGURG, 0, &oact) == -1) {
3-24.c 9 Test case for assertion #3 of the sigaction system call that shows
10 calling sigaction with a null act argument does not change the
16 3. Call sigaction with a null act
34 struct sigaction act;
35 struct sigaction oact;
40 if (sigaction(SIGVTALRM, &act, 0) == -1) {
46 if (sigaction(SIGVTALRM, 0, &oact) == -1) {
3-25.c 9 Test case for assertion #3 of the sigaction system call that shows
10 calling sigaction with a null act argument does not change the
16 3. Call sigaction with a null act
34 struct sigaction act;
35 struct sigaction oact;
40 if (sigaction(SIGXCPU, &act, 0) == -1) {
46 if (sigaction(SIGXCPU, 0, &oact) == -1) {
3-26.c 9 Test case for assertion #3 of the sigaction system call that shows
10 calling sigaction with a null act argument does not change the
16 3. Call sigaction with a null act
34 struct sigaction act;
35 struct sigaction oact;
40 if (sigaction(SIGXFSZ, &act, 0) == -1) {
46 if (sigaction(SIGXFSZ, 0, &oact) == -1) {
3-3.c 9 Test case for assertion #3 of the sigaction system call that shows
10 calling sigaction with a null act argument does not change the
16 3. Call sigaction with a null act
34 struct sigaction act;
35 struct sigaction oact;
40 if (sigaction(SIGBUS, &act, 0) == -1) {
46 if (sigaction(SIGBUS, 0, &oact) == -1) {

Completed in 215 milliseconds

1 2 3 4 5 6 7 8 91011>>