HomeSort by relevance Sort by last modified time
    Searched refs:threads (Results 626 - 650 of 1579) sorted by null

<<21222324252627282930>>

  /external/valgrind/coregrind/
m_libcassert.c 368 = (VgStack*)VG_(threads)[i].os_state.valgrind_stack_base;
372 if (VG_(threads)[i].status == VgTs_Empty
375 VG_(name_of_ThreadStatus)(VG_(threads)[i].status),
376 VG_(threads)[i].os_state.lwpid);
377 if (VG_(threads)[i].status != VgTs_Empty)
379 if (stack_usage && VG_(threads)[i].client_stack_highest_byte != 0 ) {
383 VG_(stack_limits)(VG_(threads)[i].client_stack_highest_byte,
m_signals.c 65 SIGVGKILL is used to terminate threads. When one thread wants
149 something worse: dealing with signals delivered to threads in
    [all...]
  /external/deqp/framework/delibs/dethread/
deThreadTest.c 274 /* Mutex and threads. */
302 deThread threads[2]; local
314 for (ndx = 0; ndx < (int)DE_LENGTH_OF_ARRAY(threads); ndx++)
316 threads[ndx] = deThread_create(mutexTestThr2, &data, DE_NULL);
317 DE_TEST_ASSERT(threads[ndx]);
322 for (ndx = 0; ndx < (int)DE_LENGTH_OF_ARRAY(threads); ndx++)
324 deBool ret = deThread_join(threads[ndx]);
326 deThread_destroy(threads[ndx]);
630 deThreadArray* threads = tmpPool ? deThreadArray_create(tmpPool) : DE_NULL; local
639 DE_TEST_ASSERT(deThreadArray_pushBack(threads, thread))
    [all...]
  /art/test/924-threads/src/art/
Test924.java 193 Thread[] threads = getAllThreads(); local
194 List<Thread> threadList = new ArrayList<>(Arrays.asList(threads));
226 private static Thread findThreadByName(Set<Thread> threads, String name) {
227 for (Thread t : threads) {
232 throw new RuntimeException("Did not find thread " + name + ": " + threads);
  /art/test/ti-agent/
jni_binder.cc 196 // Look at the context classloaders of all threads.
198 jthread* threads; local
199 CheckJvmtiError(jvmti_env, jvmti_env->GetAllThreads(&thread_count, &threads));
200 JvmtiUniquePtr threads_uptr = MakeJvmtiUniquePtr(jvmti_env, threads);
207 CheckJvmtiError(jvmti_env, jvmti_env->GetThreadInfo(threads[t], &info));
218 env->DeleteLocalRef(threads[t]);
  /system/core/debuggerd/
crash_dump.cpp 271 // Note: processes with many threads and minidebug-info can take a bit to
283 std::map<pid_t, std::string> threads; local
299 threads.emplace(sibling_tid, get_thread_name(sibling_tid));
315 threads.emplace(main_tid, get_thread_name(main_tid));
317 // Drop our capabilities now that we've attached to the threads we care about.
374 dump_backtrace(output_fd.get(), backtrace_map.get(), target, main_tid, process_name, threads, 0);
377 process_name, threads, abort_address, fatal_signal ? &amfd_data : nullptr);
  /external/deqp/modules/egl/
teglGLES2SharedRenderingPerfTests.cpp 882 void createThreads (vector<TestThread*>& threads, int threadCount, int perThreadContextCount, vector<TestContext*>& contexts)
885 DE_ASSERT(threads.empty());
894 threads.push_back(new TestThread(threadContexts));
900 void destroyThreads (vector<TestThread*>& threads)
902 for (int threadNdx = 0; threadNdx < (int)threads.size(); threadNdx++)
904 delete threads[threadNdx];
905 threads[threadNdx] = DE_NULL;
908 threads.clear();
911 void startThreads (vector<TestThread*>& threads)
913 for (int threadNdx = 0; threadNdx < (int)threads.size(); threadNdx++
1034 vector<TestThread*> threads; local
    [all...]
  /prebuilts/go/darwin-x86/src/runtime/debug/
garbage.go 120 // threads that the Go program can use. If it attempts to use more than
123 // The initial setting is 10,000 threads.
125 // The limit controls the number of operating system threads, not the number
127 // is ready to run but all the existing threads are blocked in system calls, cgo calls,
131 // programs that create an unbounded number of threads. The idea is
133 func SetMaxThreads(threads int) int {
134 return setMaxThreads(threads)
  /prebuilts/go/linux-x86/src/runtime/debug/
garbage.go 120 // threads that the Go program can use. If it attempts to use more than
123 // The initial setting is 10,000 threads.
125 // The limit controls the number of operating system threads, not the number
127 // is ready to run but all the existing threads are blocked in system calls, cgo calls,
131 // programs that create an unbounded number of threads. The idea is
133 func SetMaxThreads(threads int) int {
134 return setMaxThreads(threads)
  /frameworks/base/tests/CoreTests/android/core/
TestWebServer.java 41 /* Where worker threads stand idle */
42 Vector threads = new Vector(); field in class:TestWebServer
44 /* List of all active worker threads */
50 /* max # worker threads */
216 * The AcceptThread is responsible for initiating worker threads
264 synchronized (threads) {
265 if (threads.isEmpty()) {
271 w = (Worker) threads.elementAt(0);
272 threads.removeElementAt(0);
298 // Stop worker threads from continuin
    [all...]
  /development/tools/bugreport/src/com/android/bugreport/stacks/
ProcessSnapshotParser.java 112 result.threads.add(snapshot);
131 System.out.println("threads=" + result.threads.size());
  /external/chromium-trace/catapult/telemetry/telemetry/timeline/
process.py 34 def threads(self): member in class:Process
59 thread = self.threads.get(tid, None)
  /external/eigen/unsupported/Eigen/CXX11/src/Tensor/
TensorCostModel.h 18 * \brief A cost model used to limit the number of threads used for evaluating
171 // Returns the number of threads in [1:max_threads] to use for
177 int threads = (cost - kStartupCycles) / kPerThreadCycles + 0.9; local
178 return numext::mini(max_threads, numext::maxi(1, threads));
197 // either because we are probably using all available threads already).
  /external/google-benchmark/src/
benchmark.cc 62 "used by all threads that make up the test. For real-time "
65 "threads.");
227 // Report the total iterations across all threads.
228 report.iterations = static_cast<int64_t>(iters) * b.threads;
262 State st(iters, b->arg, thread_id, b->threads, &timer, manager);
286 std::vector<std::thread> pool(b.threads - 1);
299 manager.reset(new internal::ThreadManager(b.threads));
314 results.real_time_used /= b.threads;
315 results.manual_time_used /= b.threads;
390 threads(n_threads)
    [all...]
  /external/libcxx/utils/google-benchmark/src/
benchmark.cc 62 "used by all threads that make up the test. For real-time "
65 "threads.");
227 // Report the total iterations across all threads.
228 report.iterations = static_cast<int64_t>(iters) * b.threads;
262 State st(iters, b->arg, thread_id, b->threads, &timer, manager);
286 std::vector<std::thread> pool(b.threads - 1);
299 manager.reset(new internal::ThreadManager(b.threads));
314 results.real_time_used /= b.threads;
315 results.manual_time_used /= b.threads;
390 threads(n_threads)
    [all...]
  /external/libvorbis/doc/vorbisfile/
Makefile.am 21 style.css threads.html vorbis_comment.html vorbis_info.html\
  /external/libvpx/libvpx/test/
encode_perf_test.cc 114 void set_threads(unsigned int threads) { threads_ = threads; }
179 printf("\t\"threads\" : %d\n", kEncodePerfTestThreads[k]);
vp9_frame_parallel_test.cc 50 cfg.threads = num_threads;
101 << "threads = " << t;
137 cfg.threads = num_threads;
181 << "threads = " << t;
vpx_temporal_svc_encoder.sh 54 for threads in $(seq $max_threads); do
58 "${error_resilient}" "${threads}" "$@" \
  /external/v8/tools/gcmole/
bootstrap.sh 104 --disable-threads \
  /external/valgrind/drd/scripts/
download-and-build-gcc 66 --enable-threads=posix \
  /packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
ContactsDatabaseHelperTest.java 232 * Try to cause conflicts in getMimeTypeId() by calling it from multiple threads with
258 final Thread[] threads = new Thread[NUM_THREADS]; local
259 for (int i = 0; i < threads.length; i++) {
260 threads[i] = new Thread(r);
261 threads[i].setDaemon(true);
263 for (int i = 0; i < threads.length; i++) {
264 threads[i].start();
266 for (int i = 0; i < threads.length; i++) {
268 threads[i].join();
  /prebuilts/go/darwin-x86/misc/cgo/testcarchive/src/libgo2/
libgo2.go 16 // The idea is to get some threads going, so that a signal will be delivered
  /prebuilts/go/darwin-x86/misc/cgo/testcshared/src/libgo4/
libgo4.go 16 // The idea is to get some threads going, so that a signal will be delivered
  /prebuilts/go/linux-x86/misc/cgo/testcarchive/src/libgo2/
libgo2.go 16 // The idea is to get some threads going, so that a signal will be delivered

Completed in 1306 milliseconds

<<21222324252627282930>>