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

1 2

  /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);
Makefile 203 pthread_kill.obj \
265 pthread_kill.c \
pthread.h     [all...]
  /external/compiler-rt/test/tsan/
signal_errno.cc 20 pthread_kill(mainth, SIGPROF);
  /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);
  /development/ndk/platforms/android-8/include/
pthread.h 233 int pthread_kill(pthread_t tid, int sig);
  /development/ndk/platforms/android-9/include/
pthread.h 270 int pthread_kill(pthread_t tid, int sig);
  /development/ndk/platforms/android-L/include/
pthread.h 196 int pthread_kill(pthread_t, int);
  /external/chromium_org/third_party/npapi/npspy/extern/nspr/md/
_pth.h 199 * These platforms don't have pthread_kill()
202 #define pthread_kill(thread, sig) ENOSYS macro
  /external/chromium_org/v8/test/cctest/
test-log.cc 149 void SendSigProf() { pthread_kill(self_, SIGPROF); }

Completed in 650 milliseconds

1 2