Home
last modified time | relevance | path

Searched refs:sa_restorer (Results 1 – 9 of 9) sorted by relevance

/aosp12/bionic/libc/bionic/
H A Dsigaction.cpp49 kernel_new_action.sa_restorer = bionic_new_action->sa_restorer; in sigaction()
58 kernel_new_action.sa_restorer = &__restore_rt; in sigaction()
75 bionic_old_action->sa_restorer = kernel_old_action.sa_restorer; in sigaction()
99 kernel_new.sa_restorer = (kernel_new.sa_flags & SA_SIGINFO) ? &__restore_rt : &__restore; in __sigaction64()
119 kernel_new.sa_restorer = bionic_new->sa_restorer; in sigaction()
132 bionic_old->sa_restorer = kernel_old.sa_restorer; in sigaction()
/aosp12/bionic/libc/include/bits/
H A Dsignal_types.h76 void (*sa_restorer)(void); \
95 void (*sa_restorer)(void); member
105 void (*sa_restorer)(void); member
/aosp12/art/test/004-SignalTest/
H A Dsignaltest.cc106 if (lhs->sa_restorer != rhs->sa_restorer) { in compare_sigaction()
122 action.sa_restorer = nullptr; in Java_Main_initSignalTest()
/aosp12/bionic/libc/kernel/uapi/asm-x86/asm/
H A Dsignal.h78 void(* sa_restorer) (void); member
86 __sigrestore_t sa_restorer; member
/aosp12/bionic/tests/
H A Dsignal_test.cpp248 static const unsigned sa_restorer = 0x4000000; in TestSigAction() local
255 ASSERT_EQ(0U, original_sa.sa_flags & ~sa_restorer); in TestSigAction()
257 ASSERT_EQ(bool(original_sa.sa_flags & sa_restorer), bool(original_sa.sa_restorer)); in TestSigAction()
273 ASSERT_EQ(static_cast<unsigned>(SA_ONSTACK), sa.sa_flags & ~sa_restorer); in TestSigAction()
275 ASSERT_EQ(bool(sa.sa_flags & sa_restorer), bool(sa.sa_restorer)); in TestSigAction()
291 ASSERT_EQ(static_cast<unsigned>(SA_ONSTACK | SA_SIGINFO), sa.sa_flags & ~sa_restorer); in TestSigAction()
293 ASSERT_EQ(bool(sa.sa_flags & sa_restorer), bool(sa.sa_restorer)); in TestSigAction()
/aosp12/art/sigchainlib/
H A Dsigchain.cc269 result.sa_restorer = action_.sa_restorer; in GetAction()
285 action_.sa_restorer = new_action->sa_restorer; in SetAction()
/aosp12/bionic/libc/kernel/uapi/asm-arm/asm/
H A Dsignal.h74 void(* sa_restorer) (void); member
/aosp12/bionic/libc/kernel/uapi/asm-generic/
H A Dsignal.h80 __sigrestore_t sa_restorer; member
/aosp12/art/test/115-native-bridge/
H A Dnativebridge.cc215 tmp.sa_restorer = nullptr; in trampoline_Java_Main_testSignal()
232 tmp2.sa_restorer = nullptr; in trampoline_Java_Main_testSignal()