Searched refs:threads (Results 151 - 175 of 414) sorted by relevance

1234567891011>>

/external/chromium_org/tools/traceline/svgui/
H A Dtraceline.js197 // The Traceline class represents our entire state, all of the threads from
200 // The array of threads that existed in the program. Hopefully in order
201 // they were created. This includes all threads from all sets of data.
202 this.threads = [ ];
204 // Keep a mapping of where in the list of threads a set starts...
207 // Map a thread id to the index in the threads array. A thread ID is the
222 // Keep track of which threads belong to which sets of data...
224 this.thread_set_indexes.push(this.threads.length);
242 // thread object and add it to our lists of threads.
246 this.threads_by_id[new_thread.id] = this.threads
[all...]
/external/chromium_org/third_party/libvpx/source/libvpx/vpx/
H A Dvpx_decoder.h108 unsigned int threads; /**< Maximum number of threads to use, default 1 */ member in struct:vpx_codec_dec_cfg
/external/chromium_org/tools/telemetry/telemetry/timeline/
H A Dmodel.py76 threads = []
78 threads.extend(process.threads.values())
79 return threads
/external/compiler-rt/lib/tsan/rtl/
H A Dtsan_report.h111 Vector<ReportThread*> threads; member in class:__tsan::ReportDesc
H A Dtsan_report.cc42 , threads(MBlockReportThread)
228 if (rep->threads.Size())
229 return rep->threads[0]->stack;
300 for (uptr i = 0; i < rep->threads.Size(); i++)
301 PrintThread(rep->threads[i]);
354 for (uptr i = 0; i < rep->threads.Size(); i++)
355 PrintThread(rep->threads[i]);
/external/fio/
H A Dgettime-thread.c39 while (threads) {
H A Dgettime.c534 struct clock_thread *threads; local
548 threads = malloc(nr_cpus * sizeof(struct clock_thread));
555 struct clock_thread *t = &threads[i];
571 struct clock_thread *t = &threads[i];
577 struct clock_thread *t = &threads[i];
583 struct clock_thread *t = &threads[i];
590 free(threads);
593 log_err("Clocksource test: %lu threads failed\n", failed);
/external/libunwind/src/coredump/
H A D_UCD_internal.h95 struct PRSTATUS_STRUCT **threads; member in struct:UCD_info
/external/libvpx/libvpx/vpx/
H A Dvpx_decoder.h108 unsigned int threads; /**< Maximum number of threads to use, default 1 */ member in struct:vpx_codec_dec_cfg
/external/valgrind/main/drd/tests/
H A Dbar_bad.stderr.exp18 initialise a barrier which has threads waiting on it
27 destroy a barrier that has waiting threads
/external/linux-tools-perf/perf-3.12.0/tools/perf/tests/
H A Dcode-reading.c395 struct thread_map *threads = NULL; local
437 threads = thread_map__new_by_tid(pid);
438 if (!threads) {
443 ret = perf_event__synthesize_thread_map(NULL, threads,
471 perf_evlist__set_maps(evlist, cpus, threads);
538 if (threads)
539 thread_map__delete(threads);
/external/lldb/test/
H A Dlldbutil.py263 # Get stopped threads due to each stop reason.
273 """ Fills array *_threads with threads stopped for the corresponding stop
502 threads = []
505 threads.append(t)
506 return threads
531 threads = get_stopped_threads(process, reason)
532 if len(threads) == 0:
534 return threads[0]
539 threads = []
544 return threads
[all...]
/external/chromium_org/base/metrics/
H A Dstats_table_unittest.cc45 slot_id = table.RegisterThread("too many threads");
61 // CounterMixed will be incremented by odd numbered threads and
62 // decremented by even threads.
102 // Create a few threads and have them poke on their counters.
122 // Spin up a set of threads to go bang on the various counters.
123 // After we join the threads, we'll make sure the counters
125 StatsTableThread* threads[kMaxThreads]; local
127 // Spawn the threads.
129 threads[index] = new StatsTableThread("MultipleThreadsTest", index);
130 threads[inde
[all...]
/external/linux-tools-perf/perf-3.12.0/tools/perf/util/
H A Dpython.c442 struct thread_map *threads; member in struct:pyrf_thread_map
455 pthreads->threads = thread_map__new(pid, tid, uid);
456 if (pthreads->threads == NULL)
463 thread_map__delete(pthreads->threads);
471 return pthreads->threads->nr;
478 if (i >= pthreads->threads->nr)
481 return Py_BuildValue("i", pthreads->threads->map[i]);
630 struct thread_map *threads = NULL; local
633 static char *kwlist[] = { "cpus", "threads", "group", "inherit", NULL };
640 threads
699 struct thread_map *threads; local
[all...]
/external/deqp/modules/egl/
H A DteglGLES2SharedRenderingPerfTests.cpp898 void createThreads (vector<TestThread*>& threads, int threadCount, int perThreadContextCount, vector<TestContext*>& contexts) argument
901 DE_ASSERT(threads.empty());
910 threads.push_back(new TestThread(threadContexts));
916 void destroyThreads (vector<TestThread*>& threads) argument
918 for (int threadNdx = 0; threadNdx < (int)threads.size(); threadNdx++)
920 delete threads[threadNdx];
921 threads[threadNdx] = NULL;
924 threads.clear();
927 void startThreads (vector<TestThread*>& threads) argument
929 for (int threadNdx = 0; threadNdx < (int)threads
933 joinThreads(vector<TestThread*>& threads) argument
939 threadResultsOk(const vector<TestThread*>& threads) argument
1050 vector<TestThread*> threads; local
1083 createTestName(int threads, int perThreadContextCount) argument
[all...]
/external/chromium_org/third_party/icu/source/test/intltest/
H A Dtsmthred.cpp208 // TestThreads -- see if threads really work at all.
210 // Set up N threads pointing at N chars. When they are started, they will
231 // TestArabicShapeThreads -- see if calls to u_shapeArabic in many threads works successfully
233 // Set up N threads pointing at N chars. When they are started, they will make calls to doTailTest which tests
235 // At the end we make sure all threads managed to run u_shapeArabic successfully.
302 SimpleThread *threads[THREADTEST_NRTHREADS]; local
309 threads[i] = new TestThreadsThread(&threadTestChars[i]);
313 logln("->" + UnicodeString(threadTestChars) + "<- Firing off threads.. ");
316 if (threads[i]->start() != 0) {
326 logln("Waiting for threads t
372 SimpleThread *threads[ARABICSHAPE_THREADTEST]; local
495 TestMutexThread *threads[TESTMUTEX_THREAD_COUNT]; local
[all...]
/external/valgrind/main/coregrind/
H A Dm_signals.c64 SIGVGKILL is used to terminate threads. When one thread wants
148 something worse: dealing with signals delivered to threads in
1057 oss->ss_sp = VG_(threads)[tid].altstack.ss_sp;
1058 oss->ss_size = VG_(threads)[tid].altstack.ss_size;
1059 oss->ss_flags = VG_(threads)[tid].altstack.ss_flags
1073 VG_(threads)[tid].altstack.ss_flags = VKI_SS_DISABLE;
1079 VG_(threads)[tid].altstack.ss_sp = ss->ss_sp;
1080 VG_(threads)[tid].altstack.ss_size = ss->ss_size;
1081 VG_(threads)[tid].altstack.ss_flags = 0;
1250 *oldset = VG_(threads)[ti
[all...]
/external/chromium_org/net/base/
H A Dnet_log_unittest.cc154 // Only triggered once all threads have been created, to make it less likely
210 // Creates |kThreads| threads of type |ThreadType| and then runs them all
214 ThreadType threads[kThreads]; local
217 for (size_t i = 0; i < arraysize(threads); ++i) {
218 threads[i].Init(net_log, &start_event);
219 threads[i].Start();
224 for (size_t i = 0; i < arraysize(threads); ++i)
225 threads[i].Join();
228 // Makes sure that events on multiple threads are dispatched to all observers.
238 // Run a bunch of threads t
[all...]
/external/chromium_org/third_party/skia/tools/
H A Dbench_pictures_cfg_helper.py75 def MultiThreadTileConfig(threads, tile_x, tile_y, **kwargs):
77 timeIndividualTiles=False, multi=str(threads),
/external/chromium_org/tools/memory_inspector/memory_inspector/frontends/
H A Dcommand_line.py90 run_time_sec, stats.threads, stats.vm_rss)
135 stats.threads, stats.cpu_usage, stats.vm_rss, stats.page_faults)
/external/chromium_org/v8/tools/gcmole/
H A Dbootstrap.sh104 --disable-threads \
/external/libvorbis/doc/vorbisfile/
H A DMakefile.am21 style.css threads.html vorbis_comment.html vorbis_info.html\
/external/lldb/scripts/Python/interface/
H A DSBProcess.i26 threads = []
29 threads.append(t)
30 return threads
141 Returns the INDEX'th thread from the list of current threads. The index
211 Kills the process and shuts down all threads that were spawned to
406 '''An accessor function that returns a list() that contains all threads in a lldb.SBProcess object.'''
407 threads = []
410 threads.append(accessor[idx])
411 return threads
413 __swig_getmethods__["threads"]
[all...]
/external/skia/tools/
H A Dbench_pictures_cfg_helper.py75 def MultiThreadTileConfig(threads, tile_x, tile_y, **kwargs):
77 timeIndividualTiles=False, multi=str(threads),
/external/valgrind/main/drd/scripts/
H A Ddownload-and-build-gcc66 --enable-threads=posix \

Completed in 6298 milliseconds

1234567891011>>