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

  /art/runtime/
runtime_android.cc 27 struct sigaction old_action; member in namespace:art
33 old_action.sa_sigaction(signal_number, info, raw_context);
42 &old_action,
  /external/v8/src/heap/
memory-reducer.cc 95 Action old_action = state_.action; local
97 if (old_action != kWait && state_.action == kWait) {
101 if (old_action == kRun) {
112 Action old_action = state_.action; local
114 if (old_action != kWait && state_.action == kWait) {
  /external/libchrome/sandbox/linux/services/
namespace_sandbox.cc 202 struct sigaction old_action; local
203 PCHECK(sys_sigaction(sig, nullptr, &old_action) == 0);
206 if (old_action.sa_flags & SA_SIGINFO &&
207 old_action.sa_sigaction != nullptr) {
212 if (old_action.sa_handler != LINUX_SIG_DFL) {
  /system/core/libsysutils/src/
SocketClient.cpp 205 struct sigaction new_action, old_action; local
208 sigaction(SIGPIPE, &new_action, &old_action);
239 sigaction(SIGPIPE, &old_action, &new_action);
  /system/core/debuggerd/handler/
debuggerd_handler.cpp 193 struct sigaction old_action; local
194 if (sigaction(signum, nullptr, &old_action) < 0) {
199 return (old_action.sa_flags & SA_SIGINFO) != 0;
  /external/google-breakpad/src/client/linux/handler/
exception_handler_unittest.cc 122 ASSERT_NE(sigaction(SIGCHLD, &sa, &old_action), -1);
126 sigaction(SIGCHLD, &old_action, NULL);
129 struct sigaction old_action; member in class:__anon19320::ExceptionHandlerTest
    [all...]

Completed in 162 milliseconds