HomeSort by relevance Sort by last modified time
    Searched defs:oact (Results 51 - 59 of 59) sorted by null

1 23

  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/sigaction/
2-8.c 10 sigaction (when used with a non-null oact pointer) changes the action
37 struct sigaction oact; local
50 if (sigaction(SIGILL, &act, &oact) == -1) {
56 if (oact.sa_handler == handler1) {
2-9.c 10 sigaction (when used with a non-null oact pointer) changes the action
37 struct sigaction oact; local
50 if (sigaction(SIGINT, &act, &oact) == -1) {
56 if (oact.sa_handler == handler1) {
  /external/ltp/testcases/kernel/syscalls/rt_sigprocmask/
rt_sigprocmask01.c 26 /* The previous action on the signal is saved in oact. The value */
76 struct sigaction act, oact; local
78 memset(&oact, 0, sizeof(oact));
101 TEST(ltp_rt_sigaction(TEST_SIG, &act, &oact,
  /external/ltp/testcases/kernel/syscalls/rt_sigsuspend/
rt_sigsuspend01.c 67 struct sigaction act, oact; local
69 memset(&oact, 0, sizeof(oact));
72 TEST(ltp_rt_sigaction(SIGALRM, &act, &oact, SIGSETSIZE));
  /device/google/cuttlefish_common/host/commands/record_audio/
main.cc 67 struct sigaction oact; local
68 sigaction(SIGINT, &act, &oact);
  /external/ltp/testcases/kernel/syscalls/rename/
rename14.c 70 struct sigaction act, oact; local
78 if (sigaction(SIGTERM, &act, &oact)) {
  /external/ltp/testcases/kernel/syscalls/sigaction/
sigaction01.c 91 struct sigaction oact; local
98 err = sigaction(SIGUSR1, NULL, &oact);
124 if (!(oact.sa_flags & SA_SIGINFO)) {
  /external/ltp/testcases/kernel/syscalls/sigaltstack/
sigaltstack01.c 88 struct sigaction act, oact; /* sigaction() struct. */ variable in typeref:struct:
120 if ((sigaction(SIGUSR1, &act, &oact)) == -1) {
189 if ((sigaction(SIGUSR1, &act, &oact)) == -1) {
  /external/ltp/include/lapi/
rt_sigaction.h 88 struct sigaction act, oact; local
97 } else if (sigaction(sig, &act, &oact) < 0) {
98 /* Copy oact.sa_restorer via syscall(2) */
99 } else if (sigaction(sig, &act, &oact) < 0) {
103 restore_rt = oact.sa_restorer;
181 * act/oact values of INVAL_SA_PTR is used to pass
188 struct sigaction *oact, size_t sigsetsize)
207 if (oact == INVAL_SA_PTR)
209 else if (oact)
245 if (oact && (oact != INVAL_SA_PTR))
    [all...]

Completed in 289 milliseconds

1 23