HomeSort by relevance Sort by last modified time
    Searched refs:pthread_kill (Results 1 - 25 of 120) sorted by null

1 2 3 4 5

  /bionic/libc/bionic/
raise.cpp 32 int rc = pthread_kill(pthread_self(), sig);
pthread_kill.cpp 37 int pthread_kill(pthread_t t, int sig) { function
posix_timers.cpp 102 pthread_kill(timer->callback_thread, TIMER_SIGNAL);
  /external/chromium_org/native_client_sdk/src/libraries/third_party/pthreads-win32/
pthread_getschedparam.c 48 result = pthread_kill (thread, 0);
pthread_kill.c 2 * pthread_kill.c
5 * This translation unit implements the pthread_kill routine.
49 pthread_kill (pthread_t thread, int sig) function
105 } /* pthread_kill */
pthread_setschedparam.c 48 result = pthread_kill (thread, 0);
pthread_cancel.c 104 result = pthread_kill (thread, 0);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/bits/
sigthread.h 36 extern int pthread_kill (pthread_t __threadid, int __signo) __THROW;
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/bits/
sigthread.h 36 extern int pthread_kill (pthread_t __threadid, int __signo) __THROW;
  /external/compiler-rt/test/tsan/
signal_errno.cc 20 pthread_kill(mainth, SIGPROF);
  /external/valgrind/main/none/tests/
pth_blockedsig.c 23 if (pthread_kill (main_thread, SIGUSR1) != 0)
24 fprintf (stderr, "error doing pthread_kill\n");
  /external/qemu/distrib/sdl-1.2.15/src/thread/pthread/
SDL_systhread.c 118 pthread_kill(thread->handle, SIGKILL);
  /external/qemu/distrib/sdl-1.2.15/src/thread/riscos/
SDL_systhread.c 140 pthread_kill(thread->handle, SIGKILL);
  /external/valgrind/main/drd/tests/
sigalrm.c 84 pthread_kill(threadid, SIGALRM);
  /libcore/luni/src/main/native/
AsynchronousCloseMonitor.cpp 70 pthread_kill(it->mThread, BLOCKED_THREAD_SIGNAL);
  /external/libunwind/tests/
Gtest-concurrent.c 79 pthread_kill (pthread_self (), SIGUSR1);
  /external/chromium_org/third_party/libjingle/source/talk/examples/call/
console.cc 80 pthread_kill(console_thread_->GetPThread(), SIGUSR1);
  /external/chromium_org/native_client_sdk/src/libraries/third_party/newlib-extras/sys/
signal.h 170 int _EXFUN(pthread_kill, (pthread_t thread, int sig));
  /external/lldb/test/functionalities/thread/concurrent_events/
main.cpp 79 pthread_kill(pthread_self(), SIGUSR1);
  /bionic/tests/
pthread_test.cpp 313 pthread_kill(signal_thread, SIGUSR1);
376 ASSERT_EQ(0, pthread_kill(pthread_self(), 0));
380 ASSERT_EQ(EINVAL, pthread_kill(pthread_self(), -1));
387 // Can we call pthread_kill from a signal handler?
388 ASSERT_EQ(0, pthread_kill(pthread_self(), SIGALRM));
394 ASSERT_EQ(0, pthread_kill(pthread_self(), SIGALRM));
490 ASSERT_EQ(ESRCH, pthread_kill(dead_thread, 0));
  /development/ndk/sources/android/libportable/arch-mips/
pthread.c 259 int WRAP(pthread_kill)(pthread_t thread, int portable_signum) function
273 ALOGV("%s: calling pthread_kill(thread:%lx, mips_signum:%d);", __func__,
275 ret = REAL(pthread_kill)(thread, mips_signum);
  /art/runtime/
signal_catcher.cc 85 CHECK_PTHREAD_CALL(pthread_kill, (pthread_, SIGQUIT), "signal catcher shutdown");
  /bionic/libc/include/
pthread.h 198 int pthread_kill(pthread_t, int);
  /development/ndk/platforms/android-3/include/
pthread.h 201 int pthread_kill(pthread_t tid, int sig);
  /development/ndk/platforms/android-5/include/
pthread.h 228 int pthread_kill(pthread_t tid, int sig);

Completed in 2199 milliseconds

1 2 3 4 5