Searched refs:threads (Results 26 - 50 of 217) sorted by relevance

123456789

/external/webkit/Source/WebCore/notifications/
H A DNotificationCenter.idl31 module threads {
H A DNotification.idl31 module threads {
/external/webkit/Source/WebCore/workers/
H A DAbstractWorker.idl31 module threads {
H A DDedicatedWorkerContext.idl31 module threads {
H A DWorker.idl27 module threads {
H A DWorkerLocation.idl29 module threads {
/external/kernel-headers/original/asm-x86/
H A Dhardirq_32.h4 #include <linux/threads.h>
/external/linux-tools-perf/util/
H A Dvalues.h7 int threads; member in struct:perf_read_values
H A Dvalues.c13 die("failed to allocate read_values threads arrays");
14 values->threads = 0;
33 for (i = 0; i < values->threads; i++)
53 die("failed to enlarge read_values threads arrays");
61 for (i = 0; i < values->threads; i++)
65 if (values->threads == values->threads_max)
68 i = values->threads++;
90 for (i = 0; i < values->threads; i++) {
143 for (i = 0; i < values->threads; i++) {
164 for (i = 0; i < values->threads;
[all...]
H A Devlist.c32 struct thread_map *threads)
39 perf_evlist__set_maps(evlist, cpus, threads);
43 struct thread_map *threads)
48 perf_evlist__init(evlist, cpus, threads);
103 int nfds = evlist->cpus->nr * evlist->threads->nr * evlist->nr_entries;
261 evlist->nr_mmaps = evlist->threads->nr;
288 for (thread = 0; thread < evlist->threads->nr; thread++) {
326 for (thread = 0; thread < evlist->threads->nr; thread++) {
351 for (thread = 0; thread < evlist->threads->nr; thread++) {
381 const struct thread_map *threads local
31 perf_evlist__init(struct perf_evlist *evlist, struct cpu_map *cpus, struct thread_map *threads) argument
42 perf_evlist__new(struct cpu_map *cpus, struct thread_map *threads) argument
439 const struct thread_map *threads = evlist->threads; local
[all...]
H A Devsel.c204 struct thread_map *threads, bool group)
213 perf_evsel__alloc_fd(evsel, cpus->nr, threads->nr) < 0)
224 for (thread = 0; thread < threads->nr; thread++) {
227 pid = threads->map[thread];
249 thread = threads->nr;
268 int threads[1]; member in struct:__anon8382
271 .threads = { -1, },
275 struct thread_map *threads, bool group)
282 if (threads == NULL)
283 threads
203 __perf_evsel__open(struct perf_evsel *evsel, struct cpu_map *cpus, struct thread_map *threads, bool group) argument
274 perf_evsel__open(struct perf_evsel *evsel, struct cpu_map *cpus, struct thread_map *threads, bool group) argument
294 perf_evsel__open_per_thread(struct perf_evsel *evsel, struct thread_map *threads, bool group) argument
[all...]
/external/oprofile/module/x86/
H A Dcpu_type.c25 * p4_threads - determines the number of logical processor threads in a die
27 * returns number of threads in p4 die (1 for non-HT processors)
35 /* This it a Pentium 4 with HT, find number of threads */
79 int enabled, threads, i;
85 threads = p4_threads();
86 if (threads == 1) return 0;
90 while (i < threads) {
/external/valgrind/main/none/tests/
H A Dtls.c90 pthread_t threads[NTESTS*2]; local
96 pthread_create(&threads[curthread++], NULL, tls_ptr, (void *)&tests[i]);
97 pthread_create(&threads[curthread++], NULL, tls_ptr, (void *)&tests[i]);
101 pthread_join(threads[i], NULL);
/external/webkit/Source/WebCore/platform/graphics/android/rendering/
H A DImagesManager.h35 #include <utils/threads.h>
/external/qemu/distrib/sdl-1.2.15/test/
H A Dtestlock.c15 static SDL_Thread *threads[6]; variable
43 SDL_KillThread(threads[i]);
64 /* If this sleep isn't done, then threads may starve */
95 if ( (threads[i]=SDL_CreateThread(Run, NULL)) == NULL )
H A Dtestsem.c60 SDL_Thread *threads[NUM_THREADS]; local
80 printf("Running %d threads, semaphore value = %d\n", NUM_THREADS, init_sem);
81 /* Create all the threads */
83 threads[i] = SDL_CreateThread(ThreadFunc, (void*)i);
89 /* Wait for all threads to finish */
90 printf("Waiting for threads to finish\n");
93 SDL_WaitThread(threads[i], NULL);
95 printf("Finished waiting for threads\n");
/external/protobuf/src/google/protobuf/stubs/
H A Donce_unittest.cc209 scoped_ptr<TestThread> threads[4]; local
212 threads[i].reset(RunInitOnceInNewThread());
215 threads[i]->Join();
226 scoped_ptr<TestThread> threads[8]; local
231 threads[i].reset(RunInitOnceInNewThread());
234 threads[i].reset(RunInitRecursiveOnceInNewThread());
246 threads[i]->Join();
/external/valgrind/main/coregrind/m_scheduler/
H A Dscheduler.c38 There are no extra threads.
149 /* CPU semaphore, so that threads can run exclusively */
214 if (VG_(threads)[i].status == VgTs_Empty) {
215 VG_(threads)[i].status = VgTs_Init;
216 VG_(threads)[i].exitreason = VgSrc_None;
335 vg_assert(VG_(threads)[tid].exitreason != VgSrc_None);
351 if (VG_(threads)[tid].status == VgTs_WaitSys) {
355 tid, VG_(threads)[tid].os_state.lwpid);
363 thread_abort(VG_(threads)[tid].os_state.lwpid);
368 Int r = VG_(tkill)(VG_(threads)[ti
[all...]
/external/valgrind/main/coregrind/
H A Dm_machine.c49 return INSTR_PTR( VG_(threads)[tid].arch );
52 return STACK_PTR( VG_(threads)[tid].arch );
55 return FRAME_PTR( VG_(threads)[tid].arch );
59 INSTR_PTR( VG_(threads)[tid].arch ) = ip;
62 STACK_PTR( VG_(threads)[tid].arch ) = sp;
69 regs->r_pc = (ULong)VG_(threads)[tid].arch.vex.guest_EIP;
70 regs->r_sp = (ULong)VG_(threads)[tid].arch.vex.guest_ESP;
72 = VG_(threads)[tid].arch.vex.guest_EBP;
74 regs->r_pc = VG_(threads)[tid].arch.vex.guest_RIP;
75 regs->r_sp = VG_(threads)[ti
[all...]
H A Dpub_core_gdbserver.h158 // address of VG_(threads) and various sizes
160 Addr32 threads; member in struct:__anon13805
176 Addr64 threads; member in struct:__anon13806
/external/webkit/Source/WebCore/platform/graphics/android/layers/
H A DLayerContent.h31 #include <utils/threads.h>
/external/webkit/Source/WebCore/platform/graphics/android/utils/
H A DClassTracker.h29 #include <utils/threads.h>
/external/compiler-rt/lib/tsan/rtl/
H A Dtsan_report.cc24 , threads(MBlockReportThread)
141 for (uptr i = 0; i < rep->threads.Size(); i++)
142 PrintThread(rep->threads[i]);
178 for (uptr i = 0; i < rep->threads.Size(); i++)
179 PrintThread(rep->threads[i]);
/external/qemu/distrib/sdl-1.2.15/src/thread/
H A DSDL_thread.c32 /* The array of threads currently active in the application
55 clean up threads here. If any threads are still running after this call,
73 If the very first threads are created simultaneously, then
85 /* Expand the list of threads, if necessary */
91 SDL_Thread **threads; local
92 threads = (SDL_Thread **)SDL_realloc(SDL_Threads,
93 (SDL_maxthreads+ARRAY_CHUNKSIZE)*(sizeof *threads));
94 if ( threads == NULL ) {
99 SDL_Threads = threads;
[all...]
/external/linux-tools-perf/
H A Dbuiltin-test.c267 struct thread_map *threads; local
278 threads = thread_map__new(-1, getpid());
279 if (threads == NULL) {
293 if (perf_evsel__open_per_thread(evsel, threads, false) < 0) {
318 perf_evsel__close_fd(evsel, 1, threads->nr);
322 thread_map__delete(threads);
331 struct thread_map *threads; local
344 threads = thread_map__new(-1, getpid());
345 if (threads == NULL) {
368 if (perf_evsel__open(evsel, cpus, threads, fals
[all...]

Completed in 649 milliseconds

123456789