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

  /external/boringssl/src/crypto/
thread_test.cc 43 static int run_thread(thread_t *out_thread, void (*thread_func)(void)) { function
72 static int run_thread(thread_t *out_thread, void (*thread_func)(void)) { function
120 ASSERT_TRUE(run_thread(&thread1, call_once_thread));
121 ASSERT_TRUE(run_thread(&thread2, call_once_thread));
162 ASSERT_TRUE(run_thread(&thread, []() {
181 ASSERT_TRUE(run_thread(&thread, []() {}));
193 ASSERT_TRUE(run_thread(&thread, []() {
  /external/autotest/client/tests/monotonic_time/src/
threads.c 33 static void *run_thread(void *arg) function
70 err = pthread_create(&thread->thread, NULL, run_thread, thread);
  /external/curl/docs/examples/
threaded-shared-conn.c 97 static void *run_thread(void *ptr) function
138 error = pthread_create(&tid[i], NULL, run_thread, &url[i]);
  /tools/test/connectivity/acts/tests/google/coex/functionality_tests/
CoexBasicFunctionalityTest.py 241 self.run_thread(args)
264 self.run_thread(args)
WlanWithHfpFunctionalityTest.py 143 self.run_thread(args)
665 self.run_thread(args)
WlanWithA2dpFunctionalityTest.py 700 self.run_thread(args)
721 self.run_thread(args)
  /system/bt/osi/src/
reactor.cc 47 pthread_t run_thread; // the pthread on which reactor_run is executing. member in struct:reactor_t
48 bool is_running; // indicates whether |run_thread| is valid.
207 pthread_equal(pthread_self(), reactor->run_thread)) {
237 reactor->run_thread = pthread_self();
thread.cc 62 static void* run_thread(void* start_arg);
87 pthread_create(&ret->pthread, NULL, run_thread, &start);
194 static void* run_thread(void* start_arg) { function
  /external/tensorflow/tensorflow/python/keras/_impl/keras/utils/
data_utils.py 520 self.run_thread = None
541 self.run_thread = threading.Thread(target=self._run)
542 self.run_thread.daemon = True
543 self.run_thread.start()
616 self.run_thread.join(timeout)
  /tools/test/connectivity/acts/framework/acts/test_utils/coex/
CoexBaseTest.py 176 self.run_thread(args)
181 self.run_thread(args)
243 def run_thread(self, kwargs): member in class:CoexBaseTest
  /tools/test/connectivity/acts/tests/google/coex/slave_role/functionality_tests/
WlanWithA2dpFunctionalitySlaveTest.py 93 self.run_thread(args)
  /external/python/cpython2/Lib/test/
test_gc.py 347 def run_thread(): function in function:GCTests.test_trashcan_threads
358 t = threading.Thread(target=run_thread)
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_gc.py 347 def run_thread(): function in function:GCTests.test_trashcan_threads
358 t = threading.Thread(target=run_thread)
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_gc.py 347 def run_thread(): function in function:GCTests.test_trashcan_threads
358 t = threading.Thread(target=run_thread)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_gc.py 347 def run_thread(): function in function:GCTests.test_trashcan_threads
358 t = threading.Thread(target=run_thread)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_gc.py 347 def run_thread(): function in function:GCTests.test_trashcan_threads
358 t = threading.Thread(target=run_thread)
  /external/valgrind/callgrind/
threads.c 181 void CLG_(run_thread)(ThreadId tid) function
global.h 763 void CLG_(run_thread)(ThreadId tid);
main.c     [all...]
  /external/python/cpython3/Lib/test/
test_gc.py 394 def run_thread(): function in function:GCTests.test_trashcan_threads
405 t = threading.Thread(target=run_thread)
    [all...]

Completed in 494 milliseconds