HomeSort by relevance Sort by last modified time
    Searched defs:thread (Results 176 - 200 of 1272) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/mesa3d/src/intel/vulkan/tests/
state_pool_test_helper.h 29 pthread_t thread; member in struct:job
66 pthread_create(&jobs[i].thread, NULL, alloc_states, &jobs[i]);
70 pthread_join(jobs[i].thread, NULL);
  /external/oj-libjdwp/src/share/back/
standardHandlers.c 44 jthread thread = evinfo->thread; local
50 * we cannot suspend the debugger thread.
52 * 1) We report the thread as NULL because we don't want the
53 * application to get hold of a debugger thread object.
59 * results by leaving the debugger thread running. However,
68 if (threadControl_isDebugThread(thread)) {
69 evinfo->thread = NULL;
93 * We can't send the frame to the helper thread because it
94 * might be useless by the time the helper thread can use i
    [all...]
  /external/perfetto/src/base/
thread_checker_unittest.cc 35 pthread_t thread; local
39 EXPECT_EQ(0, pthread_create(&thread, nullptr, thread_main, &closure));
41 EXPECT_EQ(0, pthread_join(thread, &retval));
  /external/strace/tests/
attach-f-p.c 57 thread(void *a) function
82 errno = pthread_create(&t[i], NULL, thread, (void *) (long) i);
count-f.c 44 thread(void *arg) function
64 errno = pthread_create(&t[i], NULL, thread, NULL);
filter-unavailable.c 39 thread(void *arg) function
60 assert(pthread_create(&t, NULL, thread, NULL) == 0);
  /external/strace/tests-m32/
attach-f-p.c 57 thread(void *a) function
82 errno = pthread_create(&t[i], NULL, thread, (void *) (long) i);
count-f.c 44 thread(void *arg) function
64 errno = pthread_create(&t[i], NULL, thread, NULL);
filter-unavailable.c 39 thread(void *arg) function
60 assert(pthread_create(&t, NULL, thread, NULL) == 0);
  /external/strace/tests-mx32/
attach-f-p.c 57 thread(void *a) function
82 errno = pthread_create(&t[i], NULL, thread, (void *) (long) i);
count-f.c 44 thread(void *arg) function
64 errno = pthread_create(&t[i], NULL, thread, NULL);
filter-unavailable.c 39 thread(void *arg) function
60 assert(pthread_create(&t, NULL, thread, NULL) == 0);
  /external/tensorflow/tensorflow/compiler/xla/
executable_run_options.h 31 namespace thread { namespace in namespace:tensorflow
67 // Sets the thread pool on which to run parallel CPU backend
70 tensorflow::thread::ThreadPool* inter_op_thread_pool);
71 tensorflow::thread::ThreadPool* inter_op_thread_pool() const;
73 // Sets the thread pool device on which to run Eigen subcomputations.
92 tensorflow::thread::ThreadPool* inter_op_thread_pool_ = nullptr;
  /external/tensorflow/tensorflow/core/lib/core/
threadpool_test.cc 26 namespace thread { namespace in namespace:tensorflow
102 // Store true for the current thread, and assert that another thread
170 } // namespace thread
  /external/testng/src/main/java/org/testng/internal/thread/graph/
SuiteWorkerFactory.java 1 package org.testng.internal.thread.graph;
  /external/testng/src/test/java/test/thread/
DataProviderThreadPoolSizeSampleTest.java 1 package test.thread;
52 long n = Thread.currentThread().getId();
59 long n = Thread.currentThread().getId();
DataProviderThreadPoolSizeTest.java 1 package test.thread;
SuiteThreadCountTest.java 1 package test.thread;
6 import org.testng.internal.thread.ThreadUtil;
13 * Test for test level thread-count.
TestThreadCountTest.java 1 package test.thread;
6 import org.testng.internal.thread.ThreadUtil;
13 * Test for test level thread-count.
ThreadPoolSizeWithTimeOutTest.java 1 package test.thread;
TrueParallelSampleTest.java 1 package test.thread;
14 Thread.sleep(random.nextInt(10));
16 Thread.yield();
  /external/valgrind/drd/tests/
free_is_write.c 43 pthread_t thread[THREAD_COUNT]; local
51 result = pthread_create(&thread[i], &attr, thread_func, 0);
62 pthread_join(thread[i], 0);
pth_detached.c 54 // thread attributes.
57 pthread_t thread; local
58 pthread_create(&thread, &attr, thread_func1, NULL);
66 pthread_t thread; local
67 pthread_create(&thread, &attr, thread_func2, NULL);
pth_detached_sem.c 4 * in this test program the main thread uses a counting semaphore instead
61 // thread attributes.
64 pthread_t thread; local
65 pthread_create(&thread, &attr, thread_func1, &thread_arg[i]);
73 pthread_t thread; local
74 pthread_create(&thread, &attr, thread_func2, &thread_arg[i]);
  /external/valgrind/memcheck/tests/solaris/
door_kill.c 32 pthread_t thread; local
35 /* Allow to create only one server door thread. */
39 res = pthread_create(&thread, NULL, my_server_thread, NULL);
81 /* Let the server thread to run. */
84 /* Send a signal to the server thread that should be already created and
91 /* Let the other thread to run. */

Completed in 483 milliseconds

1 2 3 4 5 6 78 91011>>