HomeSort by relevance Sort by last modified time
    Searched refs:child_thread (Results 1 - 23 of 23) sorted by null

  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_kill/
6-1.c 35 pthread_t child_thread; local
40 rc = pthread_create(&child_thread, NULL, thread_function, NULL);
46 rc = pthread_join(child_thread, NULL);
52 /* Now the child_thread exited, it is an invalid tid */
53 memcpy(&invalid_tid, &child_thread, sizeof(pthread_t));
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_spin_destroy/
3-1.c 54 pthread_t child_thread; local
71 if (pthread_create(&child_thread, NULL, fn_chld, NULL) != 0) {
77 pthread_join(child_thread, NULL);
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_spin_init/
4-1.c 56 pthread_t child_thread; local
84 if (pthread_create(&child_thread, NULL, fn_chld, NULL) != 0) {
90 pthread_join(child_thread, NULL);
  /external/ltp/testcases/realtime/func/pi-tests/
testpi-5.c 45 void *child_thread(void *arg) function
53 printf("child_thread: got lock\n");
57 printf("child_thread: Trying to get lock 2nd time\n");
62 printf("child_thread: got lock 2nd time !!\n");
90 create_other_thread(child_thread, NULL);
testpi-6.c 47 void *child_thread(void *arg) function
55 printf("child_thread: got lock\n");
59 printf("child_thread: Trying to get lock 2nd time\n");
64 printf("child_thread: got lock 2nd time !!\n");
90 create_other_thread(child_thread, NULL);
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_barrier_wait/
3-1.c 81 pthread_t child_thread; local
92 if (pthread_create(&child_thread, NULL, fn_chld, NULL) != 0) {
114 if (pthread_kill(child_thread, SIGUSR1) != 0) {
167 if (pthread_join(child_thread, NULL) != 0) {
3-2.c 87 pthread_t child_thread; local
99 if (pthread_create(&child_thread, NULL, fn_chld, NULL) != 0) {
121 if (pthread_kill(child_thread, SIGUSR1) != 0) {
159 if (pthread_join(child_thread, NULL) != 0) {
1-1.c 68 pthread_t child_thread; local
85 if (pthread_create(&child_thread, NULL, fn_chld, NULL) != 0) {
137 if (pthread_join(child_thread, NULL) != 0) {
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_barrier_init/
4-1.c 73 pthread_t child_thread; local
90 if (pthread_create(&child_thread, NULL, fn_chld, NULL) != 0) {
127 pthread_cancel(child_thread);
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_spin_lock/
1-2.c 75 pthread_t child_thread; local
98 if (pthread_create(&child_thread, NULL, fn_chld, NULL) != 0) {
139 if (pthread_join(child_thread, NULL) != 0) {
1-1.c 102 pthread_t child_thread; local
133 if (pthread_create(&child_thread, NULL, fn_chld, NULL) != 0) {
139 if (pthread_join(child_thread, &value_ptr) != 0) {
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_spin_trylock/
1-1.c 79 pthread_t child_thread; local
98 if (pthread_create(&child_thread, NULL, fn_chld, NULL) != 0) {
104 pthread_join(child_thread, NULL);
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_spin_unlock/
1-1.c 71 pthread_t child_thread; local
97 if (pthread_create(&child_thread, NULL, fn_chld, NULL) != 0) {
103 if (pthread_join(child_thread, NULL) != 0) {
1-2.c 76 pthread_t child_thread; local
95 if (pthread_create(&child_thread, NULL, fn_chld, NULL) != 0) {
135 if (pthread_join(child_thread, NULL) != 0) {
3-1.c 81 pthread_t child_thread; local
87 if (pthread_create(&child_thread, NULL, fn_chld, NULL) != 0) {
107 if (pthread_join(child_thread, NULL) != 0) {
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/getpid/
1-1.c 73 pthread_t child_thread; local
82 ret = pthread_create(&child_thread, NULL, threaded, &hispid);
86 ret = pthread_join(child_thread, NULL);
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_barrier_destroy/
2-1.c 84 pthread_t child_thread, watchdog_thread; local
94 if (pthread_create(&child_thread, NULL, fn_chld, NULL) != 0) {
135 pthread_cancel(child_thread);
  /external/chromium-trace/catapult/devil/devil/utils/
timeout_retry.py 150 child_thread = reraiser_thread.ReraiserThread(lambda: func(*args, **kwargs),
153 thread_group = TimeoutRetryThreadGroup(timeout, threads=[child_thread])
  /external/libmojo/third_party/catapult/devil/devil/utils/
timeout_retry.py 150 child_thread = reraiser_thread.ReraiserThread(lambda: func(*args, **kwargs),
153 thread_group = TimeoutRetryThreadGroup(timeout, threads=[child_thread])
  /external/google-breakpad/src/client/mac/tests/
exception_handler_test.cc 276 mach_port_t child_thread = child_message.GetTranslatedPort(1); local
278 ASSERT_NE((mach_port_t)MACH_PORT_NULL, child_thread);
282 child_thread,
  /external/stressapptest/src/
worker.cc 2284 NetworkSlaveThread& child_thread = child_workers_[i]->thread; local
    [all...]
  /art/runtime/
thread.cc 662 Thread* child_thread = new Thread(is_daemon); local
664 child_thread->tlsPtr_.jpeer = env->NewGlobalRef(java_peer);
670 reinterpret_cast<jlong>(child_thread));
676 JNIEnvExt::Create(child_thread, Runtime::Current()->GetJavaVM(), &error_msg));
682 child_thread->tlsPtr_.tmp_jni_env = child_jni_env_ext.get();
690 child_thread);
709 env->DeleteGlobalRef(child_thread->tlsPtr_.jpeer);
710 child_thread->tlsPtr_.jpeer = nullptr;
711 delete child_thread;
712 child_thread = nullptr
    [all...]
  /external/tensorflow/tensorflow/python/debug/cli/
curses_ui_test.py 315 def child_thread(): function in function:CursesTest.testCursesUiInChildThreadStartsWithoutException
320 t = threading.Thread(target=child_thread)
    [all...]

Completed in 684 milliseconds