HomeSort by relevance Sort by last modified time
    Searched refs:threads (Results 676 - 700 of 1207) sorted by null

<<21222324252627282930>>

  /external/lzma/CPP/7zip/UI/Common/
Bench.cpp     [all...]
  /external/autotest/client/bin/
kernel.py 367 threads = 2 * utils.count_cpus()
368 build_string = 'make -j %d %s %s' % (threads, make_opts,
374 utils.system('make -j %d modules' % (threads))
384 def build_timed(self, threads, timefile = '/dev/null', make_opts = '',
392 % (timefile, make_opts, threads)
  /external/compiler-rt/lib/tsan/rtl/
tsan_rtl_report.cc 184 for (uptr i = 0; i < rep_->threads.Size(); i++) {
185 if ((u32)rep_->threads[i]->id == tctx->tid)
190 rep_->threads.PushBack(rt);
501 for (uptr i = 0; pc_or_addr == 0 && i < rep->threads.Size(); i++)
502 pc_or_addr = IsSuppressed(rep->typ, rep->threads[i]->stack, &supp);
  /external/google-breakpad/src/processor/
minidump_processor.cc 135 MinidumpThreadList *threads = dump->GetThreadList(); local
136 if (!threads) {
147 (threads != NULL ? "" : "no ") << "thread list, " <<
154 unsigned int thread_count = threads->thread_count();
167 MinidumpThread *thread = threads->GetThreadAtIndex(thread_index);
201 // might be greater than the thread index in the threads vector if
202 // any of the minidump's threads are skipped and not placed into the
203 // processed threads vector. The thread vector's current size will
262 // Threads with missing CPU contexts will hit this, but
    [all...]
  /external/valgrind/coregrind/m_coredump/
coredump-elf.c 544 fill_xfpu(&VG_(threads)[tid], &xfpu);
549 fill_fpu(&VG_(threads)[tid], &fpu);
557 fill_prstatus(&VG_(threads)[tid], &prstatus, si);
644 /* Add details for all threads except the one that faulted */
647 if (VG_(threads)[i].status == VgTs_Empty)
662 fill_prpsinfo(&VG_(threads)[tid], &prpsinfo);
  /prebuilts/gdb/darwin-x86/lib/python2.7/
platform.py 174 libcinit,glibc,glibcversion,so,threads,soversion = m.groups()
188 if threads and version[-len(threads):] != threads:
189 version = version + threads
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/
platform.py 174 libcinit,glibc,glibcversion,so,threads,soversion = m.groups()
188 if threads and version[-len(threads):] != threads:
189 version = version + threads
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
platform.py 174 libcinit,glibc,glibcversion,so,threads,soversion = m.groups()
188 if threads and version[-len(threads):] != threads:
189 version = version + threads
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
platform.py 174 libcinit,glibc,glibcversion,so,threads,soversion = m.groups()
188 if threads and version[-len(threads):] != threads:
189 version = version + threads
    [all...]
  /external/chromium-trace/catapult/systrace/systrace/tracing_agents/
atrace_agent.py 339 threads = {}
347 threads[tid] = name
349 return threads
  /external/google-breakpad/src/client/linux/minidump_writer/
minidump_writer_unittest.cc 363 // Pass the pipe fd and the number of threads as arguments.
605 // Pass the pipe fd and the number of threads as arguments.
616 // Wait for all child threads to indicate that they have started
617 for (int threads = 0; threads < kNumberOfThreadsInHelperProgram; threads++) {
637 // Child and its threads are ready now.
702 // If, in reality, each of the threads' stack is *smaller* than
  /external/valgrind/coregrind/
m_main.c 183 " --fair-sched=no|yes|try schedule threads fairly on multicore systems [no]\n"
217 " --max-threads=<number> maximum number of threads that valgrind can\n"
359 - set VG_(clo_max_threads) (--max-threads)
402 else if VG_INT_CLO(str, "--max-threads", VG_(clo_max_threads)) {}
552 else if VG_STREQN(14, arg, "--max-threads=") {}
    [all...]
  /external/webrtc/talk/app/webrtc/java/testcommon/src/org/webrtc/
PeerConnectionTest.java 499 System.gc(); // Encourage any GC-related threads to start up.
509 // 2. before contains 3 threads that do not exist in after.
510 // 3. after contains 3 threads that do not exist in before.
513 // the thread names as well, in order to determine what these 3 threads are.
775 TreeSet<String> threads = new TreeSet<String>();
777 // looking for libjingle/webrtc native threads, most of which won't have
780 threads.add(threadId);
782 return threads;
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_bz2.py 302 # Using a BZ2File from several threads doesn't deadlock (issue #7205).
309 threads = [threading.Thread(target=comp) for i in range(nthreads)]
310 for t in threads:
312 for t in threads:
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_bz2.py 302 # Using a BZ2File from several threads doesn't deadlock (issue #7205).
309 threads = [threading.Thread(target=comp) for i in range(nthreads)]
310 for t in threads:
312 for t in threads:
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_bz2.py 302 # Using a BZ2File from several threads doesn't deadlock (issue #7205).
309 threads = [threading.Thread(target=comp) for i in range(nthreads)]
310 for t in threads:
312 for t in threads:
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_bz2.py 302 # Using a BZ2File from several threads doesn't deadlock (issue #7205).
309 threads = [threading.Thread(target=comp) for i in range(nthreads)]
310 for t in threads:
312 for t in threads:
  /libcore/jsr166-tests/src/test/java/jsr166/
ReentrantLockTest.java 137 * Checks that condition c has exactly the given waiter threads.
140 Thread... threads) {
142 assertEquals(threads.length > 0, lock.hasWaiters(c));
143 assertEquals(threads.length, lock.getWaitQueueLength(c));
144 assertEquals(threads.length == 0, lock.getWaitingThreads(c).isEmpty());
145 assertEquals(threads.length, lock.getWaitingThreads(c).size());
147 new HashSet<Thread>(Arrays.asList(threads)));
240 * hasQueuedThreads reports whether there are waiting threads
266 * getQueueLength reports number of waiting threads
334 * getQueuedThreads includes waiting threads
    [all...]
  /external/autotest/site_utils/chromeos_proxy/
swarming_bots.py 290 # Start threads to kill bots.
291 threads = []
294 threads.append(t)
297 # Wait on threads.
  /external/fio/
fio.h 409 extern struct thread_data *threads;
536 for ((i) = 0, (td) = &threads[0]; (i) < (int) thread_number; (i)++, (td)++)
614 * We currently only need to do locking if we have verifier threads
  /external/google-breakpad/src/google_breakpad/common/
minidump_format.h 371 MDRawThread threads[1]; member in struct:__anon11432
375 threads[0]);
    [all...]
  /external/libunwind/doc/
unw_set_caching_policy.tex 28 that is shared by all threads. If global caching is unavailable or
  /external/lzma/CS/7zip/
ICoder.cs 133 /// Specifies the number of threads.
  /external/valgrind/coregrind/m_syswrap/
syswrap-x86-linux.c 307 ML_(start_thread_NORETURN), stack, flags, &VG_(threads)[ctid],
529 ldt = (UChar*)(VG_(threads)[tid].arch.vex.guest_LDT);
563 ldt = (VexGuestX86SegDescr*)VG_(threads)[tid].arch.vex.guest_LDT;
584 VG_(threads)[tid].arch.vex.guest_LDT = (HWord)ldt;
633 gdt = (VexGuestX86SegDescr*)VG_(threads)[tid].arch.vex.guest_GDT;
638 VG_(threads)[tid].arch.vex.guest_GDT = (HWord)gdt;
690 gdt = (VexGuestX86SegDescr*)VG_(threads)[tid].arch.vex.guest_GDT;
695 VG_(threads)[tid].arch.vex.guest_GDT = (HWord)gdt;
935 VG_(message)(Vg_UserMsg, " - via a threads library (LinuxThreads or NPTL)\n");
    [all...]
  /art/runtime/base/
logging.h 56 bool threads; member in struct:art::LogVerbosity

Completed in 5909 milliseconds

<<21222324252627282930>>