HomeSort by relevance Sort by last modified time
    Searched refs:new_action (Results 1 - 6 of 6) sorted by null

  /system/core/libsysutils/src/
SocketClient.cpp 205 struct sigaction new_action, old_action; local
206 memset(&new_action, 0, sizeof(new_action));
207 new_action.sa_handler = SIG_IGN;
208 sigaction(SIGPIPE, &new_action, &old_action);
239 sigaction(SIGPIPE, &old_action, &new_action);
  /external/ltp/testcases/kernel/sched/tool/
time-schedule.c 316 struct sigaction new_action; local
345 memset(&new_action, 0, sizeof new_action);
346 sigemptyset(&new_action.sa_mask);
347 new_action.sa_handler = s_term_handler;
348 if (sigaction(SIGTERM, &new_action, NULL) != 0) {
  /art/sigchainlib/
sigchain.cc 284 extern "C" int sigaction(int signal, const struct sigaction* new_action, struct sigaction* old_action) {
298 if (new_action != nullptr) {
299 chains[signal].SetAction(new_action);
309 return linked_sigaction(signal, new_action, old_action);
  /external/v8/src/regexp/
jsregexp.h     [all...]
  /system/core/libbacktrace/
backtrace_test.cpp 542 struct sigaction new_action; local
543 ASSERT_TRUE(sigaction(THREAD_SIGNAL, nullptr, &new_action) == 0);
544 EXPECT_EQ(cur_action.sa_sigaction, new_action.sa_sigaction);
550 new_action.sa_flags &= ~SA_RESTORER;
554 new_action.sa_flags &= ~0x04000000;
556 EXPECT_EQ(cur_action.sa_flags, new_action.sa_flags);
    [all...]
  /toolchain/binutils/binutils-2.25/bfd/
elf32-xtensa.c 7725 proposed_action *new_action = &ebb_table->actions[j]; local
    [all...]

Completed in 580 milliseconds