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

  /external/lldb/test/functionalities/thread/create_after_attach/
main.c 40 pthread_t thread_2; local
53 pthread_create (&thread_2, NULL, thread_2_func, NULL);
57 pthread_join(thread_2, NULL);
  /external/lldb/test/functionalities/thread/multi_break/
main.cpp 50 pthread_t thread_2; local
57 pthread_create (&thread_2, NULL, thread_func, NULL);
61 pthread_join(thread_2, NULL);
  /external/lldb/test/functionalities/thread/step_out/
main.cpp 52 pthread_t thread_2; local
59 pthread_create (&thread_2, NULL, thread_func, NULL);
63 pthread_join(thread_2, NULL);
  /external/lldb/test/functionalities/thread/create_during_step/
main.cpp 66 pthread_t thread_2; local
79 pthread_create (&thread_2, NULL, create_thread_func, &thread_1);
88 pthread_join(thread_2, NULL);
  /external/lldb/test/functionalities/thread/exit_during_step/
main.cpp 70 pthread_t thread_2; local
79 pthread_create (&thread_2, NULL, exit_thread_func, NULL);
82 pthread_join(thread_2, NULL);
  /external/lldb/test/functionalities/thread/
main.c 28 pthread_t thread_2; local
29 pthread_create (&thread_2, NULL, thread2, NULL);
34 pthread_join(thread_2, NULL);
  /external/lldb/test/functionalities/thread/thread_exit/
main.cpp 60 pthread_t thread_2; local
74 pthread_create (&thread_2, NULL, thread2, NULL); // Set first breakpoint here
86 pthread_join(thread_2, NULL);
  /external/lldb/test/functionalities/thread/break_after_join/
main.cpp 91 pthread_t thread_2; local
110 pthread_create (&thread_2, NULL, wait_thread_func, NULL);
121 pthread_join(thread_2, NULL);
  /external/lldb/test/functionalities/thread/exit_during_break/
main.cpp 95 pthread_t thread_2; local
117 pthread_create (&thread_2, NULL, wait_thread_func, NULL);
131 pthread_join(thread_2, NULL);

Completed in 147 milliseconds