Searched refs:pthread_setcancelstate (Results 1 – 25 of 27) sorted by relevance
12
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/testfrmw/ |
D | testfrmw.c | 49 pthread_setcancelstate(PTHREAD_CANCEL_DISABLE, &oldstate); in output() 62 pthread_setcancelstate(oldstate, NULL); in output()
|
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_mutex_init/ |
D | 3-2.c | 119 if ((ret = pthread_setcancelstate(PTHREAD_CANCEL_ENABLE, &tmp))) { in deadlk_issue() 133 if ((ret = pthread_setcancelstate(PTHREAD_CANCEL_DISABLE, &tmp))) { in deadlk_issue()
|
D | 1-2.c | 113 if ((ret = pthread_setcancelstate(PTHREAD_CANCEL_ENABLE, &tmp))) { in deadlk_issue() 127 if ((ret = pthread_setcancelstate(PTHREAD_CANCEL_DISABLE, &tmp))) { in deadlk_issue()
|
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_setcancelstate/ |
D | coverage.txt | 1 This document defines the coverage for the pthread_setcancelstate function:
|
D | 3-1.c | 34 ret = pthread_setcancelstate(-100, NULL); in a_thread_func()
|
D | 1-2.c | 41 pthread_setcancelstate(PTHREAD_CANCEL_DISABLE, NULL); in a_thread_func()
|
D | 1-1.c | 42 pthread_setcancelstate(PTHREAD_CANCEL_ENABLE, NULL); in a_thread_func()
|
/external/compiler-rt/test/msan/ |
D | pthread_setcancelstate.cc | 10 int res = pthread_setcancelstate(PTHREAD_CANCEL_DISABLE, &oldstate); in main()
|
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_create/ |
D | 1-3.c | 67 pthread_setcancelstate(PTHREAD_CANCEL_ENABLE, NULL); in a_thread_function()
|
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_testcancel/ |
D | 2-1.c | 37 pthread_setcancelstate(PTHREAD_CANCEL_DISABLE, NULL); in a_thread_func()
|
D | 1-1.c | 56 pthread_setcancelstate(PTHREAD_CANCEL_ENABLE, NULL); in a_thread_func()
|
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_cancel/ |
D | 1-2.c | 51 pthread_setcancelstate(PTHREAD_CANCEL_DISABLE, NULL); in a_thread_func()
|
D | 1-1.c | 50 pthread_setcancelstate(PTHREAD_CANCEL_ENABLE, NULL); in a_thread_func()
|
D | 1-3.c | 57 pthread_setcancelstate(PTHREAD_CANCEL_ENABLE, NULL); in a_thread_func()
|
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_cleanup_push/ |
D | 1-2.c | 53 pthread_setcancelstate(PTHREAD_CANCEL_ENABLE, NULL); in a_thread_func()
|
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_setcanceltype/ |
D | 2-1.c | 52 pthread_setcancelstate(PTHREAD_CANCEL_ENABLE, NULL); in a_thread_func()
|
D | 1-1.c | 53 pthread_setcancelstate(PTHREAD_CANCEL_ENABLE, NULL); in a_thread_func()
|
D | 1-2.c | 56 pthread_setcancelstate(PTHREAD_CANCEL_ENABLE, NULL); in a_thread_func()
|
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_join/ |
D | 3-1.c | 47 err = pthread_setcancelstate(PTHREAD_CANCEL_ENABLE, NULL); in a_thread_func()
|
/external/deqp-deps/glslang/glslang/OSDependent/Unix/ |
D | ossource.cpp | 82 pthread_setcancelstate(PTHREAD_CANCEL_ENABLE, &old_cancel_state); in OS_CleanupThreadData()
|
/external/ltp/testcases/open_posix_testsuite/Documentation/ |
D | COVERAGE.threads | 50 pthread_setcancelstate YES HIGH
|
/external/libpcap/rpcapd/ |
D | rpcapd.c | 1182 if (pthread_setcancelstate(PTHREAD_CANCEL_ENABLE, NULL)) in accept_connection()
|
D | daemon.c | 2282 retval = pthread_setcancelstate(PTHREAD_CANCEL_ENABLE, NULL); in daemon_thrdatamain()
|
/external/ImageMagick/MagickCore/ |
D | vms.h | 839 #define pthread_setcancelstate PTHREAD_SETCANCELSTATE macro
|
/external/compiler-rt/lib/sanitizer_common/ |
D | sanitizer_common_interceptors.inc | 5521 INTERCEPTOR(int, pthread_setcancelstate, int state, int *oldstate) { 5523 COMMON_INTERCEPTOR_ENTER(ctx, pthread_setcancelstate, state, oldstate); 5524 int res = REAL(pthread_setcancelstate)(state, oldstate); 5539 COMMON_INTERCEPT_FUNCTION(pthread_setcancelstate); \
|
12