HomeSort by relevance Sort by last modified time
    Searched defs:act (Results 1 - 25 of 244) sorted by null

1 2 3 4 5 6 7 8 910

  /bionic/libc/bionic/
siginterrupt.c 34 struct sigaction act; local
36 (void) sigaction(sig, NULL, &act);
39 act.sa_flags &= ~SA_RESTART;
41 act.sa_flags |= SA_RESTART;
43 return sigaction(sig, &act, NULL);
  /external/compiler-rt/test/tsan/
signal_malloc.cc 17 struct sigaction act = {}; local
18 act.sa_sigaction = &handler;
19 sigaction(SIGPROF, &act, 0);
signal_write.cc 15 struct sigaction act = {}; local
16 act.sa_sigaction = &handler;
17 sigaction(SIGPROF, &act, 0);
signal_thread.cc 25 struct sigaction act = {}; local
26 act.sa_handler = &handler;
27 if (sigaction(SIGPROF, &act, 0)) {
signal_errno.cc 38 struct sigaction act = {}; local
39 act.sa_sigaction = &MyHandler;
40 sigaction(SIGPROF, &act, 0);
signal_longjmp.cc 49 struct sigaction act; local
50 act.sa_handler = sigfault_handler;
51 act.sa_flags = 0;
52 if (sigemptyset(&act.sa_mask)) {
57 if (sigaction(SIGNAL_TO_HANDLE, &act, NULL)) {
signal_reset.cc 28 struct sigaction act = {}; local
30 act.sa_handler = &handler;
31 if (sigaction(SIGPROF, &act, 0)) {
35 act.sa_handler = SIG_IGN;
36 if (sigaction(SIGPROF, &act, 0)) {
45 struct sigaction act = {}; local
46 act.sa_handler = SIG_IGN;
47 if (sigaction(SIGPROF, &act, 0)) {
signal_sync.cc 31 struct sigaction act = {}; local
32 act.sa_handler = &handler;
33 if (sigaction(SIGPROF, &act, 0)) {
  /external/compiler-rt/test/asan/TestCases/Linux/
signal_during_stop_the_world.cc 22 struct sigaction act = {}; local
23 act.sa_handler = handler;
24 sigaction(SIGPROF, &act, 0);
  /external/ltrace/testsuite/ltrace.main/
signals.c 12 handler(int signum,siginfo_t *info,void *act)
21 struct sigaction act; local
33 sigemptyset(&act.sa_mask);
34 act.sa_sigaction=handler;
35 act.sa_flags=SA_SIGINFO;
37 if(sigaction(sig,&act,NULL) < 0)
  /external/ltrace/testsuite/ltrace.torture/
signals.c 12 handler(int signum,siginfo_t *info,void *act)
19 struct sigaction act; local
29 sigemptyset(&act.sa_mask);
30 act.sa_sigaction=handler;
31 act.sa_flags=SA_SIGINFO;
33 if(sigaction(sig,&act,NULL) < 0)
  /external/strace/tests/
clock_nanosleep.c 59 const struct sigaction act = { .sa_handler = handler }; local
87 if (sigaction(SIGALRM, &act, NULL))
nanosleep.c 53 const struct sigaction act = { .sa_handler = handler }; local
76 if (sigaction(SIGALRM, &act, NULL))
  /external/valgrind/memcheck/tests/
sigaltstack.c 16 struct sigaction act; local
32 act.sa_flags=SA_ONSTACK;
33 act.sa_handler=&sig_handler;
34 sigemptyset(&act.sa_mask);
35 res = sigaction(SIGUSR1,&act,0);
  /external/valgrind/memcheck/tests/solaris/
spawn.c 72 struct sigaction act; local
73 bzero(&act, sizeof(act));
74 act.sa_sigaction = sigchld_handler;
75 act.sa_flags = SA_SIGINFO;
76 ret = sigaction(SIGCHLD, &act, NULL);
  /external/valgrind/none/tests/
coolo_sigaction.cpp 16 struct sigaction act; local
17 act.sa_handler=theHandler;
18 sigemptyset(&(act.sa_mask));
19 sigaddset(&(act.sa_mask), SIGCHLD);
21 sigprocmask(SIG_UNBLOCK, &(act.sa_mask), 0);
23 act.sa_flags = SA_NOCLDSTOP;
29 act.sa_flags |= SA_RESTART;
32 sigaction( SIGCHLD, &act, &oldChildHandlerData );
34 act.sa_handler=SIG_IGN;
35 sigemptyset(&(act.sa_mask))
    [all...]
  /system/core/init/
signal_handler.cpp 66 struct sigaction act; local
67 memset(&act, 0, sizeof(act));
68 act.sa_handler = SIGCHLD_handler;
69 act.sa_flags = SA_NOCLDSTOP;
70 sigaction(SIGCHLD, &act, 0);
  /system/core/libmemunreachable/
ScopedAlarm.h 31 struct sigaction act{}; struct
32 act.sa_handler = [](int) {
35 sigaction(SIGALRM, &act, &oldact);
46 struct sigaction act{}; struct
47 act.sa_handler = SIG_DFL;
48 sigaction(SIGALRM, &act, NULL);
  /system/core/toolbox/upstream-netbsd/lib/libutil/
raise_default_signal.c 66 struct sigaction origact, act; local
74 (void)memset(&act, 0, sizeof(act));
75 act.sa_handler = SIG_DFL;
76 act.sa_flags = 0;
77 if ((sigemptyset(&act.sa_mask) == -1) ||
89 if (sigaction(sig, &act, &origact) == -1)
  /cts/tools/dasm/src/java_cup/
parse_action_table.java 63 parse_action act; local
72 act = under_state[row].under_term[col];
73 if (act != null && act.kind() == parse_action.REDUCE)
76 ((reduce_action)act).reduce_with().note_reduction_use();
  /external/libchrome/base/posix/
unix_domain_socket_linux_unittest.cc 63 struct sigaction act = {}, oldact; local
64 act.sa_handler = SIG_DFL;
65 ASSERT_EQ(0, sigaction(SIGPIPE, &act, &oldact));
  /external/libgdx/gdx/src/com/badlogic/gdx/scenes/scene2d/actions/
LayoutAction.java 35 public boolean act (float delta) { method in class:LayoutAction
RemoveAction.java 27 public boolean act (float delta) { method in class:RemoveAction
RemoveActorAction.java 27 public boolean act (float delta) { method in class:RemoveActorAction
SequenceAction.java 60 public boolean act (float delta) { method in class:SequenceAction
65 if (actions.get(index).act(delta)) {

Completed in 864 milliseconds

1 2 3 4 5 6 7 8 910