HomeSort by: relevance | last modified time | path
    Searched defs:act (Results 1 - 25 of 157) sorted by relevancy

1 2 3 4 5 6 7

  /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.threads/
attach-into-signal.c 34 struct sigaction act; local
36 memset (&act, 0, sizeof(struct sigaction));
37 act.sa_sigaction = action;
38 act.sa_flags = SA_RESTART;
39 sigaction (SIGALRM, &act, 0);
watchpoint-fork-child.c 44 struct sigaction act, oldact; local
49 memset (&act, 0, sizeof act);
50 act.sa_flags = SA_RESTART;
51 act.sa_handler = handler_usr1;
52 sigemptyset (&act.sa_mask);
53 i = sigaction (SIGUSR1, &act, &oldact);
  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.threads/
attach-into-signal.c 34 struct sigaction act; local
36 memset (&act, 0, sizeof(struct sigaction));
37 act.sa_sigaction = action;
38 act.sa_flags = SA_RESTART;
39 sigaction (SIGALRM, &act, 0);
watchpoint-fork-child.c 44 struct sigaction act, oldact; local
49 memset (&act, 0, sizeof act);
50 act.sa_flags = SA_RESTART;
51 act.sa_handler = handler_usr1;
52 sigemptyset (&act.sa_mask);
53 i = sigaction (SIGUSR1, &act, &oldact);
  /src/lib/libc/gen/
signal.c 72 struct sigaction act, oact; local
74 act.sa_handler = func;
75 act.sa_flags = SA_RESTART;
77 sigemptyset(&act.sa_mask);
78 sigaddset(&act.sa_mask, sig);
79 if (sigaction(sig, &act, &oact) < 0)
  /src/tests/lib/libc/gen/posix_spawn/
h_spawnattr.c 51 struct sigaction act; local
64 if (sigaction(SIGUSR1, NULL, &act) < 0) {
68 if (act.sa_sigaction != (void *)SIG_DFL) {
  /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.base/
signest.c 44 struct sigaction act; local
45 memset (&act, 0, sizeof act);
46 act.sa_handler = keeper;
47 act.sa_flags = SA_NODEFER;
48 sigaction (SIGSEGV, &act, NULL);
49 sigaction (SIGBUS, &act, NULL);
sigbpt.c 44 struct sigaction act; local
45 memset (&act, 0, sizeof act);
46 act.sa_handler = keeper;
47 sigaction (SIGSEGV, &act, NULL);
48 sigaction (SIGBUS, &act, NULL);
sigaltstack.c 37 struct sigaction act; local
38 memset (&act, 0, sizeof (act));
39 act.sa_handler = catcher;
40 act.sa_flags |= on_stack;
41 sigaction (sig, &act, NULL);
  /src/external/gpl3/gdb.old/dist/gdbsupport/
scoped_signal_handler.h 39 struct sigaction act; local
41 act.sa_handler = handler;
42 sigemptyset (&act.sa_mask);
43 act.sa_flags = 0;
44 sigaction (SIG, &act, &m_prev_handler);
  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.base/
signest.c 44 struct sigaction act; local
45 memset (&act, 0, sizeof act);
46 act.sa_handler = keeper;
47 act.sa_flags = SA_NODEFER;
48 sigaction (SIGSEGV, &act, NULL);
49 sigaction (SIGBUS, &act, NULL);
sigbpt.c 44 struct sigaction act; local
45 memset (&act, 0, sizeof act);
46 act.sa_handler = keeper;
47 sigaction (SIGSEGV, &act, NULL);
48 sigaction (SIGBUS, &act, NULL);
sigaltstack.c 37 struct sigaction act; local
38 memset (&act, 0, sizeof (act));
39 act.sa_handler = catcher;
40 act.sa_flags |= on_stack;
41 sigaction (sig, &act, NULL);
  /src/external/gpl3/gdb/dist/gdbsupport/
scoped_signal_handler.h 39 struct sigaction act; local
41 act.sa_handler = handler;
42 sigemptyset (&act.sa_mask);
43 act.sa_flags = 0;
44 sigaction (SIG, &act, &m_prev_handler);
  /src/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)
  /src/external/bsd/ntp/dist/tests/libntp/
vi64ops.c 42 vint64 act, exp; local
49 act = strtouv64(sp, &ep, 0);
51 TEST_ASSERT_TRUE(IsEqual(exp, act));
58 vint64 act, exp; local
65 act = strtouv64(sp, &ep, 0);
66 TEST_ASSERT_TRUE(IsEqual(exp, act));
72 vint64 act, exp; local
79 act = strtouv64(sp, &ep, 16);
80 TEST_ASSERT_TRUE(IsEqual(exp, act));
  /src/external/bsd/openldap/dist/libraries/liblmdb/
mdb_copy.c 36 const char *progname = argv[0], *act; local
66 act = "opening environment";
72 act = "copying";
80 progname, act, rc, mdb_strerror(rc));
  /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.trace/
signal.c 50 struct sigaction act; local
53 memset (&act, 0, sizeof act);
54 act.sa_handler = handler;
55 act.sa_flags = SA_NODEFER;
56 sigaction (SIGABRT, &act, NULL);
  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.trace/
signal.c 50 struct sigaction act; local
53 memset (&act, 0, sizeof act);
54 act.sa_handler = handler;
55 act.sa_flags = SA_NODEFER;
56 sigaction (SIGABRT, &act, NULL);
  /src/tests/fs/common/
fstest_ffs.c 64 struct sigaction act, oact; local
68 memset(&act, 0, sizeof(act));
69 act.sa_handler = SIG_DFL;
70 sigaction(SIGCHLD, &act, &oact);
fstest_udf.c 64 struct sigaction act, oact; local
71 memset(&act, 0, sizeof(act));
72 act.sa_handler = SIG_DFL;
73 sigaction(SIGCHLD, &act, &oact);
  /src/tests/lib/libpthread/
t_siglongjmp.c 78 struct sigaction act; local
89 act.sa_sigaction = handler;
90 sigemptyset(&act.sa_mask);
91 sigaddset(&act.sa_mask, SIGUSR2);
92 act.sa_flags = 0;
93 sigaction(SIGSEGV, &act, NULL);
t_sleep.c 74 struct sigaction act; local
79 act.sa_handler = handler;
80 sigemptyset(&act.sa_mask);
81 act.sa_flags = 0;
82 sigaction(SIGALRM, &act, NULL);
  /src/sys/external/bsd/drm/dist/bsd-core/
drm_memory.c 279 int act; local
285 act = MEMRANGE_SET_UPDATE;
287 return mem_range_attr_set(&mrdesc, &act);
293 int act; local
299 act = MEMRANGE_SET_REMOVE;
301 return mem_range_attr_set(&mrdesc, &act);
  /src/external/bsd/pkg_install/dist/lib/
fexec.c 116 posix_spawn_file_actions_t act; local
128 if ((err = posix_spawn_file_actions_init(&act)) != 0) {
135 err = posix_spawn_file_actions_addopen(&act, STDOUT_FILENO,
144 if (posix_spawn(&child, file, &act, NULL, (char **)argv, environ) < 0) {

Completed in 24 milliseconds

1 2 3 4 5 6 7