Home
last modified time | relevance | path

Searched refs:tgkill (Results 1 – 11 of 11) sorted by relevance

/system/core/base/include/android-base/
Dthreads.h29 extern "C" int tgkill(int tgid, int tid, int sig);
/system/core/base/
Dthreads.cpp51 int tgkill(int tgid, int tid, int sig) { in tgkill() function
/system/core/debuggerd/seccomp_policy/
Dcrash_dump.x86_64.policy22 tgkill: 1
Dcrash_dump.arm64.policy22 tgkill: 1
Dcrash_dump.arm.policy23 tgkill: 1
Dcrash_dump.x86.policy23 tgkill: 1
Dcrash_dump.policy.def30 tgkill: 1
/system/core/libbacktrace/
DBacktraceCurrent.cpp171 if (tgkill(Pid(), Tid(), THREAD_SIGNAL) != 0) { in UnwindThread()
221 if (tgkill(Pid(), Tid(), 0) == -1 && errno == ESRCH) { in UnwindThread()
/system/core/libmemunreachable/tests/
DThreadCapture_test.cpp265 tgkill(ret, tid, SIGKILL); in TEST_F()
324 tgkill(child, tid, sig); in TEST_F()
/system/core/libunwindstack/tests/
DUnwindTest.cpp368 ASSERT_EQ(0, tgkill(getpid(), tid.load(), SIGUSR1)) << "Error: " << strerror(errno); in TEST_F()
/system/core/debuggerd/
Dcrash_dump.cpp523 if (tgkill(target_process, tid, SIGSTOP) != 0) { in main()